功能更新

This commit is contained in:
GG Z
2026-02-12 21:29:00 +08:00
parent a9faf251be
commit 5f1adc5ad2
341 changed files with 4293 additions and 1874 deletions

View File

@@ -1,5 +1,7 @@
using System.Windows;
using FileProcessor;
namespace ShrlAlgoStudio
{
public partial class MainWindow : Window
@@ -8,5 +10,28 @@ namespace ShrlAlgoStudio
{
InitializeComponent();
}
private void RevitCipher_Click(object sender, RoutedEventArgs e)
{
RevitFileCipher cipher=new RevitFileCipher();
cipher.ShowDialog();
}
private void ReplaceFont_Click(object sender, RoutedEventArgs e)
{
DrfxFontFixer fixer=new DrfxFontFixer();
fixer.ShowDialog();
}
private void GuidGenerate_Click(object sender, RoutedEventArgs e)
{
GuidGeneratorView fixer=new GuidGeneratorView();
fixer.ShowDialog();
}
private void IconFont_Click(object sender, RoutedEventArgs e)
{
Iconfont2CSharpView fixer=new Iconfont2CSharpView();
fixer.ShowDialog();
}
}
}