12345678910111213141516171819202122232425 |
- <Window x:Class="Compdfkit_Tools.PDFControl.EncryptionDialog"
- 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.PDFControl"
- mc:Ignorable="d"
- ResizeMode="NoResize"
- Title="Batch Encryption" Height="504" Width="1052">
- <Grid Margin="10">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"></RowDefinition>
- <RowDefinition Height="Auto"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="Auto"></ColumnDefinition>
- <ColumnDefinition Width="Auto"></ColumnDefinition>
- </Grid.ColumnDefinitions>
-
- <local:EncryptionFileListControl Width="646" Height="364"></local:EncryptionFileListControl>
- <StackPanel Grid.Row="0" Grid.Column="1" Margin="0,52.5,0,0">
- <local:UserPasswordControl></local:UserPasswordControl>
- </StackPanel>
- </Grid>
- </Window>
|