1234567891011121314151617181920212223242526272829303132 |
- <Window x:Class="Compdfkit_Tools.PDFControl.DecryptionDialog"
- 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"
- WindowStartupLocation="CenterScreen"
- ShowInTaskbar="False"
- Title="DecryptionDialog" Height="600" Width="522">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <local:FileGridListControl x:Name="FileListControl" Width="496" Height="420"/>
-
- <StackPanel Grid.Row="1" Margin="20,20,20,0">
- <TextBlock FontFamily="Microsoft YaHei" FontSize="12" TextWrapping="Wrap"
- 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>
- <TextBlock FontFamily="Microsoft YaHei" FontSize="12" TextWrapping="Wrap" Margin="0,10,0,10"
- Text="If open password is required,you need to enter the right password first and then remove protections from PDF files."></TextBlock>
- </StackPanel>
-
- <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right">
- <Button Width="112" Height="32" FontFamily="Microsoft YaHei" FontSize="14" Content="Remove" Click="Remove_Click" IsEnabled="{Binding ElementName=FileListControl,Path=IsEnsure}"></Button>
- <Button Width="112" Height="32" FontFamily="Microsoft YaHei" FontSize="14" Content="Cancel" Margin="10,0,10,0" Click="Cancel_Click"></Button>
- </StackPanel>
- </Grid>
- </Window>
|