CPDFPageInsertWindow.xaml 918 B

12345678910111213141516
  1. <Window x:Class="Compdfkit_Tools.PDFControl.CPDFPageInsertWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Compdfkit_Tools.PDFControl"
  7. xmlns:cpdftoolsui="clr-namespace:Compdfkit_Tools.PDFControlUI"
  8. mc:Ignorable="d"
  9. Title="CPDFPageInsertWindow" Height="500" Width="432"
  10. d:DesignHeight="500" d:DesignWidth="432"
  11. Background="#FFFFFF"
  12. ResizeMode="NoResize" ShowInTaskbar="False">
  13. <Grid>
  14. <cpdftoolsui:CPDFPageInsertUI x:Name="CPDFPageInsertUI" Grid.Row="1" Loaded="CPDFPageInsertUI_Loaded" Unloaded="CPDFPageInsertUI_Unloaded"></cpdftoolsui:CPDFPageInsertUI>
  15. </Grid>
  16. </Window>