维护更新
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user