CPDFThumbnailControl.xaml 1.1 KB

1234567891011121314151617181920
  1. <UserControl x:Class="Compdfkit_Tools.PDFControl.CPDFThumbnailControl"
  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. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="auto"></RowDefinition>
  13. <RowDefinition Height="*"></RowDefinition>
  14. </Grid.RowDefinitions>
  15. <Border Height="50">
  16. <TextBlock FontSize="14" Foreground="#42464D" Margin="16,0,0,0" VerticalAlignment="Center">Thumbnails</TextBlock>
  17. </Border>
  18. <ui:CPDFThumbnailUI BorderThickness="0" Grid.Row="1" x:Name="ThumbControl" SizeChanged="ThumbControl_SizeChanged" PreviewMouseWheel="ThumbControl_MouseWheel"></ui:CPDFThumbnailUI>
  19. </Grid>
  20. </UserControl>