CPDFViewModeControl.xaml 917 B

1234567891011121314151617
  1. <UserControl x:Class="ComPDFKit.Controls.PDFControl.CPDFViewModeControl"
  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.Controls.PDFControl"
  7. xmlns:pdftoolsui="clr-namespace:ComPDFKit.Controls.PDFControlUI"
  8. mc:Ignorable="d"
  9. d:DesignHeight="30" d:DesignWidth="350">
  10. <Grid>
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="31*"/>
  13. <ColumnDefinition Width="4*"/>
  14. </Grid.ColumnDefinitions>
  15. <pdftoolsui:CPDFViewModeUI x:Name="CPDFViewModeUI" Grid.ColumnSpan="2"></pdftoolsui:CPDFViewModeUI>
  16. </Grid>
  17. </UserControl>