EncryptionDialog.xaml 1.2 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="Compdfkit_Tools.PDFControl.EncryptionDialog"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Compdfkit_Tools.PDFControl"
  7. mc:Ignorable="d"
  8. ResizeMode="NoResize"
  9. Title="Batch Encryption" Height="504" Width="1052">
  10. <Grid Margin="10">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="Auto"></RowDefinition>
  13. <RowDefinition Height="Auto"></RowDefinition>
  14. </Grid.RowDefinitions>
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition Width="Auto"></ColumnDefinition>
  17. <ColumnDefinition Width="Auto"></ColumnDefinition>
  18. </Grid.ColumnDefinitions>
  19. <local:EncryptionFileListControl Width="646" Height="364"></local:EncryptionFileListControl>
  20. <StackPanel Grid.Row="0" Grid.Column="1" Margin="0,52.5,0,0">
  21. <local:UserPasswordControl></local:UserPasswordControl>
  22. </StackPanel>
  23. </Grid>
  24. </Window>