123456789101112131415161718192021222324252627282930313233343536 |
- <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">
- <GroupBox Header="Access Permissions">
- <StackPanel Orientation="Vertical" Margin="19,12,0,0">
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Printing:"></TextBlock>
- <TextBlock x:Name="AllowsPrintingTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Content Copying:" ></TextBlock>
- <TextBlock x:Name="AllowsCopyingTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Document Change:"></TextBlock>
- <TextBlock x:Name="AllowsDocumentChangesTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Document Assembly:"></TextBlock>
- <TextBlock x:Name="AllowsDocumentAssemblyTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Commenting:"></TextBlock>
- <TextBlock x:Name="AllowsCommentingTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Height="30">
- <TextBlock Text="Filling of Form Field:"></TextBlock>
- <TextBlock x:Name="AllowsFormFieldEntryTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
- </StackPanel>
- </StackPanel>
- </GroupBox>
- </UserControl>
|