PDFDocumentInfoControl.xaml 1.1 KB

1234567891011121314151617
  1. <UserControl x:Class="viewer_ctrl_demo.PDFDocumetInfo.PDFDocumentInfoControl"
  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:viewer_ctrl_demo.PDFDocumetInfo"
  7. xmlns:tools="clr-namespace:compdfkit_tools;assembly=com.compdfkit.tools"
  8. mc:Ignorable="d"
  9. d:DesignHeight="240" d:DesignWidth="600">
  10. <Grid>
  11. <StackPanel Orientation="Horizontal">
  12. <tools:PDFAbstractInfoControl x:Name="PDFAbstractInfoControl" Width="200"></tools:PDFAbstractInfoControl>
  13. <tools:PDFCreateInfoControl x:Name="PDFCreateInfoControl" Width="200"></tools:PDFCreateInfoControl>
  14. <tools:PDFSecurityInfoControl x:Name="PDFSecurityInfoControl" Width="200"></tools:PDFSecurityInfoControl>
  15. </StackPanel>
  16. </Grid>
  17. </UserControl>