CPDFInfoControl.xaml 953 B

12345678910111213141516
  1. <UserControl x:Class="ComPDFKit.Controls.PDFControl.CPDFInfoControl"
  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:cpdftools="clr-namespace:ComPDFKit.Controls.PDFControl"
  7. mc:Ignorable="d">
  8. <Grid>
  9. <StackPanel Orientation="Vertical">
  10. <cpdftools:CPDFAbstractInfoControl x:Name="CPDFAbstractInfoControl"></cpdftools:CPDFAbstractInfoControl>
  11. <cpdftools:CPDFCreateInfoControl x:Name="CPDFCreateInfoControl" Margin="0,21,0,0"></cpdftools:CPDFCreateInfoControl>
  12. <cpdftools:CPDFSecurityInfoControl x:Name="CPDFSecurityInfoControl"></cpdftools:CPDFSecurityInfoControl>
  13. </StackPanel>
  14. </Grid>
  15. </UserControl>