<UserControl x:Class="compdfkit_tools.PDFControl.CPDFThumbnailControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:compdfkit_tools.PDFControl" xmlns:ui="clr-namespace:compdfkit_tools.PDFControlUI" mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="auto"></RowDefinition> <RowDefinition Height="*"></RowDefinition> </Grid.RowDefinitions> <Border Height="50"> <TextBlock FontSize="14" Foreground="#42464D" Margin="16,0,0,0" VerticalAlignment="Center">Thumbnails</TextBlock> </Border> <ui:CPDFThumbnailUI BorderThickness="0" Grid.Row="1" x:Name="ThumbControl" SizeChanged="ThumbControl_SizeChanged" PreviewMouseWheel="ThumbControl_MouseWheel"></ui:CPDFThumbnailUI> </Grid> </UserControl>