40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System.Windows;
|
|
|
|
namespace ShrlAlgoStudio
|
|
{
|
|
public partial class MainWindow
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void RevitCipher_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
new RevitFileCipherView().ShowDialog();
|
|
}
|
|
|
|
private void ReplaceFont_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
DrfxFontFixerView fixerView=new DrfxFontFixerView();
|
|
fixerView.ShowDialog();
|
|
}
|
|
|
|
private void GuidGenerate_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
GuidGeneratorView guidView=new GuidGeneratorView();
|
|
guidView.ShowDialog();
|
|
}
|
|
private void IconFont_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
Iconfont2CSharpView iconfont2CSharp=new Iconfont2CSharpView();
|
|
iconfont2CSharp.ShowDialog();
|
|
}
|
|
|
|
private void LicenseGen_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
LicenseGenView licenseGen=new LicenseGenView();
|
|
licenseGen.ShowDialog();
|
|
}
|
|
}
|
|
} |