维护更新

This commit is contained in:
GG Z
2026-02-17 22:17:23 +08:00
parent b3479d1f39
commit 3816edbdb4
72 changed files with 272 additions and 2976 deletions

View File

@@ -1,10 +1,8 @@
using System.Windows;
using FileProcessor;
namespace ShrlAlgoStudio
{
public partial class MainWindow : Window
public partial class MainWindow
{
public MainWindow()
{
@@ -13,25 +11,30 @@ namespace ShrlAlgoStudio
private void RevitCipher_Click(object sender, RoutedEventArgs e)
{
RevitFileCipher cipher=new RevitFileCipher();
cipher.ShowDialog();
new RevitFileCipherView().ShowDialog();
}
private void ReplaceFont_Click(object sender, RoutedEventArgs e)
{
DrfxFontFixer fixer=new DrfxFontFixer();
fixer.ShowDialog();
DrfxFontFixerView fixerView=new DrfxFontFixerView();
fixerView.ShowDialog();
}
private void GuidGenerate_Click(object sender, RoutedEventArgs e)
{
GuidGeneratorView fixer=new GuidGeneratorView();
fixer.ShowDialog();
GuidGeneratorView guidView=new GuidGeneratorView();
guidView.ShowDialog();
}
private void IconFont_Click(object sender, RoutedEventArgs e)
{
Iconfont2CSharpView fixer=new Iconfont2CSharpView();
fixer.ShowDialog();
Iconfont2CSharpView iconfont2CSharp=new Iconfont2CSharpView();
iconfont2CSharp.ShowDialog();
}
private void LicenseGen_Click(object sender, RoutedEventArgs e)
{
LicenseGenView licenseGen=new LicenseGenView();
licenseGen.ShowDialog();
}
}
}