12345678910111213141516171819202122232425262728293031323334 |
- <UserControl x:Class="compdfkit_tools.PDFControl.CPDFDisplaySettingsControl"
- 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:pdftoolsui="clr-namespace:compdfkit_tools.PDFControlUI"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800" Width="260">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- </Grid.RowDefinitions>
-
- <Border Height="40" BorderThickness="0,0,0,1" BorderBrush="#E0E0E0">
- <TextBlock FontSize="16" LineHeight="24" Foreground="#42464D" VerticalAlignment="Center" HorizontalAlignment="Center">Preview settings</TextBlock>
- </Border>
- <Border Grid.Row="1" Background="#FAFCFF">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"></RowDefinition>
- <RowDefinition Height="auto"></RowDefinition>
- </Grid.RowDefinitions>
- <pdftoolsui:CPDFViewModeUI x:Name="ViewModeUI" Margin="16,26,0,0"/>
- <pdftoolsui:CPDFDrawModeUI x:Name="DrawModeUI" Grid.Row="1" Margin="16,26,0,0"></pdftoolsui:CPDFDrawModeUI>
-
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|