功能更新

This commit is contained in:
GG Z
2026-02-12 21:29:00 +08:00
parent a9faf251be
commit b3479d1f39
342 changed files with 4671 additions and 2223 deletions

View File

@@ -0,0 +1,45 @@
<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>