46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
|
|
<ms:MelWindow
|
||
|
|
x:Class="FileProcessor.RevitFileCipher"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:local="clr-namespace:FileProcessor"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:ms="https://github.com/ShrlAlgo/Melskin"
|
||
|
|
Title="解密"
|
||
|
|
Width="320"
|
||
|
|
Height="150"
|
||
|
|
mc:Ignorable="d">
|
||
|
|
<UniformGrid Margin="5" Rows="2">
|
||
|
|
<Button
|
||
|
|
Padding="10"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
Click="IsDecrypt_Click"
|
||
|
|
Content="判断是否加密" />
|
||
|
|
<Button
|
||
|
|
Padding="10"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
Click="DecryptButton_Click"
|
||
|
|
Content="解密文件" />
|
||
|
|
<Button
|
||
|
|
Padding="10"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
Click="DecryptFolderButton_Click"
|
||
|
|
Content="解密文件夹" />
|
||
|
|
<Button
|
||
|
|
Padding="10"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
Click="EncryptButton_Click"
|
||
|
|
Content="加密文件" />
|
||
|
|
<Button
|
||
|
|
Padding="10"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
Click="EncryptFolderButton_Click"
|
||
|
|
Content="加密文件夹" />
|
||
|
|
</UniformGrid>
|
||
|
|
</ms:MelWindow>
|