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