2026-02-12 21:28:44 +08:00
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
2026-02-12 21:29:00 +08:00
|
|
|
|
using FileProcessor;
|
|
|
|
|
|
|
2026-02-12 21:28:44 +08:00
|
|
|
|
namespace ShrlAlgoStudio
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
|
{
|
|
|
|
|
|
public MainWindow()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
2026-02-12 21:29:00 +08:00
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
}
|
2026-02-12 21:28:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|