|
@@ -0,0 +1,35 @@
|
|
|
+<Window x:Class="Compdfkit_Tools.Encryption.SecurityOperationTypeDialog"
|
|
|
+ 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.Encryption"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ ResizeMode="NoResize"
|
|
|
+ ShowInTaskbar="False"
|
|
|
+ Title="Operation Type" Height="214" Width="432">
|
|
|
+ <Grid Margin="10,20,5,0">
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="104"></RowDefinition>
|
|
|
+ <RowDefinition Height="40"></RowDefinition>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid Background="White" Margin="20,0,0,0" Panel.ZIndex="1" Height="20" HorizontalAlignment="Left" VerticalAlignment="Top">
|
|
|
+ <TextBlock Foreground="#001A4E" FontFamily="Segoe UI" Text="Password Type" FontWeight="DemiBold" FontSize="14"></TextBlock>
|
|
|
+ </Grid>
|
|
|
+ <Border Margin="0,10,7,12" BorderBrush="#33000000" BorderThickness="1">
|
|
|
+ <Grid Margin="10" VerticalAlignment="Center" Height="{Binding Path=ActualHeight, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Border}}}">
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="*"></RowDefinition>
|
|
|
+ <RowDefinition Height="*"></RowDefinition>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <RadioButton x:Name="RdoAddPassword" IsChecked="True" VerticalAlignment="Center" FontFamily="Segoe UI" FontSize="14" Content="Add Password">
|
|
|
+ </RadioButton>
|
|
|
+ <RadioButton Grid.Row="1" x:Name="RdoRemovePassword" VerticalAlignment="Center" FontFamily="Segoe UI" FontSize="14" Content="Remove Password"></RadioButton>
|
|
|
+ </Grid>
|
|
|
+ </Border>
|
|
|
+ <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Right">
|
|
|
+ <Button Content="Cancel" Width="112" Height="32" FontFamily="Segoe UI" FontSize="14" Click="Cancel_Click"></Button>
|
|
|
+ <Button Content="OK" Width="112" Height="32" FontFamily="Segoe UI" FontSize="14" Margin="10,0,10,0" Click="Confirm_Click"></Button>
|
|
|
+ </StackPanel>
|
|
|
+ </Grid>
|
|
|
+</Window>
|