2026-02-12 21:28:44 +08:00
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ShrlAlgoStudio
|
|
|
|
|
|
{
|
2026-02-17 22:17:23 +08:00
|
|
|
|
public partial class MainWindow
|
2026-02-12 21:28:44 +08:00
|
|
|
|
{
|
|
|
|
|
|
public MainWindow()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
2026-02-12 21:29:00 +08:00
|
|
|
|
|
|
|
|
|
|
private void RevitCipher_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
2026-02-17 22:17:23 +08:00
|
|
|
|
new RevitFileCipherView().ShowDialog();
|
2026-02-12 21:29:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void ReplaceFont_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
2026-02-17 22:17:23 +08:00
|
|
|
|
DrfxFontFixerView fixerView=new DrfxFontFixerView();
|
|
|
|
|
|
fixerView.ShowDialog();
|
2026-02-12 21:29:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void GuidGenerate_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
2026-02-17 22:17:23 +08:00
|
|
|
|
GuidGeneratorView guidView=new GuidGeneratorView();
|
|
|
|
|
|
guidView.ShowDialog();
|
2026-02-12 21:29:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
private void IconFont_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
2026-02-17 22:17:23 +08:00
|
|
|
|
Iconfont2CSharpView iconfont2CSharp=new Iconfont2CSharpView();
|
|
|
|
|
|
iconfont2CSharp.ShowDialog();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void LicenseGen_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
LicenseGenView licenseGen=new LicenseGenView();
|
|
|
|
|
|
licenseGen.ShowDialog();
|
2026-02-12 21:29:00 +08:00
|
|
|
|
}
|
2026-02-12 21:28:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|