1234567891011121314151617181920212223242526272829303132333435 |
- <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"
- 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>
|