<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">
        <StackPanel Orientation="Vertical" Margin="19,12,0,0">
            <StackPanel Orientation="Horizontal"  Height="30">
                <TextBlock Text="Print:"></TextBlock>
                <TextBlock x:Name="AllowsPrintingTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
            </StackPanel>
            <StackPanel Orientation="Horizontal"  Height="30">
                <TextBlock Text="Allow Copy:" ></TextBlock>
                <TextBlock x:Name="AllowsCopyingTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
            </StackPanel>
            <StackPanel Orientation="Horizontal"  Height="30">
                <TextBlock Text="Allow Change:"></TextBlock>
                <TextBlock x:Name="AllowsDocumentChangesTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
            </StackPanel>
            <StackPanel Orientation="Horizontal"  Height="30">
                <TextBlock Text="Document Portfolio:"></TextBlock>
                <TextBlock x:Name="AllowsDocumentAssemblyTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
            </StackPanel>
            <StackPanel Orientation="Horizontal"  Height="30">
                <TextBlock Text="Allow Annotations:"></TextBlock>
                <TextBlock x:Name="AllowsCommentingTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
            </StackPanel>
            <StackPanel Orientation="Horizontal"  Height="30">
                <TextBlock Text="Fill and Froms:"></TextBlock>
                <TextBlock x:Name="AllowsFormFieldEntryTextBlock" Margin="4,0,0,0" Foreground="#999999"></TextBlock>
            </StackPanel>
        </StackPanel>
    </GroupBox>
</UserControl>