1234567891011121314151617181920212223242526272829303132333435363738 |
- <UserControl x:Class="compdfkit_tools.PDFControl.CPDFSecurityInfoControl"
- 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:compdfkit_tools"
- mc:Ignorable="d"
- d:DesignHeight="220" d:DesignWidth="200">
- <Grid>
- <StackPanel Orientation="Vertical" Margin="10,0,0,0">
- <TextBlock Text="访问权限" Height="40"></TextBlock>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="打印" Width="80"></TextBlock>
- <TextBlock x:Name="AllowsPrintingTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="内容复制" Width="80"></TextBlock>
- <TextBlock x:Name="AllowsCopyingTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="更改文档" Width="80"></TextBlock>
- <TextBlock x:Name="AllowsDocumentChangesTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="文档组合" Width="80"></TextBlock>
- <TextBlock x:Name="AllowsDocumentAssemblyTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="注释" Width="80"></TextBlock>
- <TextBlock x:Name="AllowsCommentingTextBlock"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="填写表单域" Width="80"></TextBlock>
- <TextBlock x:Name="AllowsFormFieldEntryTextBlock"></TextBlock>
- </StackPanel>
- </StackPanel>
- </Grid>
- </UserControl>
|