CPDFSecurityInfoControl.xaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <UserControl x:Class="compdfkit_tools.PDFControl.CPDFSecurityInfoControl"
  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_tools"
  7. mc:Ignorable="d"
  8. d:DesignHeight="220" d:DesignWidth="200">
  9. <Grid>
  10. <StackPanel Orientation="Vertical" Margin="10,0,0,0">
  11. <TextBlock Text="访问权限" Height="40"></TextBlock>
  12. <StackPanel Orientation="Horizontal" Height="30">
  13. <TextBlock Text="打印" Width="80"></TextBlock>
  14. <TextBlock x:Name="AllowsPrintingTextBlock"></TextBlock>
  15. </StackPanel>
  16. <StackPanel Orientation="Horizontal" Height="30">
  17. <TextBlock Text="内容复制" Width="80"></TextBlock>
  18. <TextBlock x:Name="AllowsCopyingTextBlock"></TextBlock>
  19. </StackPanel>
  20. <StackPanel Orientation="Horizontal" Height="30">
  21. <TextBlock Text="更改文档" Width="80"></TextBlock>
  22. <TextBlock x:Name="AllowsDocumentChangesTextBlock"></TextBlock>
  23. </StackPanel>
  24. <StackPanel Orientation="Horizontal" Height="30">
  25. <TextBlock Text="文档组合" Width="80"></TextBlock>
  26. <TextBlock x:Name="AllowsDocumentAssemblyTextBlock"></TextBlock>
  27. </StackPanel>
  28. <StackPanel Orientation="Horizontal" Height="30">
  29. <TextBlock Text="注释" Width="80"></TextBlock>
  30. <TextBlock x:Name="AllowsCommentingTextBlock"></TextBlock>
  31. </StackPanel>
  32. <StackPanel Orientation="Horizontal" Height="30">
  33. <TextBlock Text="填写表单域" Width="80"></TextBlock>
  34. <TextBlock x:Name="AllowsFormFieldEntryTextBlock"></TextBlock>
  35. </StackPanel>
  36. </StackPanel>
  37. </Grid>
  38. </UserControl>