CPDFBookmarkControl.xaml 1.0 KB

12345678910111213141516171819
  1. <UserControl x:Class="Compdfkit_Tools.PDFControl.CPDFBookmarkControl"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Compdfkit_Tools.PDFControl"
  7. xmlns:ui="clr-namespace:Compdfkit_Tools.PDFControlUI"
  8. xmlns:convert="clr-namespace:Compdfkit_Tools.Common"
  9. mc:Ignorable="d"
  10. d:DesignHeight="450" d:DesignWidth="800">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="auto"></RowDefinition>
  14. <RowDefinition Height="*"></RowDefinition>
  15. </Grid.RowDefinitions>
  16. <ui:CPDFBookmarkAddUI x:Name="BookmarkAddUI"></ui:CPDFBookmarkAddUI>
  17. <ui:CPDFBookmarkResultUI Grid.Row="1" x:Name="BookmarkResultUI"></ui:CPDFBookmarkResultUI>
  18. </Grid>
  19. </UserControl>