DecryptionDialog.xaml 1.9 KB

12345678910111213141516171819202122232425262728293031
  1. <Window x:Class="Compdfkit_Tools.PDFControl.DecryptionDialog"
  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. ShowInTaskbar="False"
  10. Title="DecryptionDialog" Height="600" Width="522">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="Auto"/>
  14. <RowDefinition Height="Auto"/>
  15. <RowDefinition Height="Auto"/>
  16. </Grid.RowDefinitions>
  17. <local:FileGridListControl x:Name="FileListControl" Width="496" Height="420"/>
  18. <StackPanel Grid.Row="1" Margin="20,20,20,0">
  19. <TextBlock FontFamily="Segoe UI" FontSize="12" TextWrapping="Wrap"
  20. Text="PDF Password Remover is an easy-to-use PDF security remover,which helps users decrypt PDF protections and remove restrictions on printing,editing and copying."></TextBlock>
  21. <TextBlock FontFamily="Segoe UI" FontSize="12" TextWrapping="Wrap" Margin="0,10,0,10"
  22. Text="If open password is required,you need to enter the right password first and then remove protections from PDF files."></TextBlock>
  23. </StackPanel>
  24. <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right">
  25. <Button Width="112" Height="32" FontFamily="Segoe UI" FontSize="14" Content="Remove" Click="Remove_Click" IsEnabled="{Binding CanRemove}"></Button>
  26. <Button Width="112" Height="32" FontFamily="Segoe UI" FontSize="14" Content="Cancel" Margin="10,0,10,0" Click="Cancel_Click"></Button>
  27. </StackPanel>
  28. </Grid>
  29. </Window>