mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
14 lines
300 B
C#
14 lines
300 B
C#
using System.Windows;
|
|
|
|
namespace Netch
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
private void Application_Startup(object sender, StartupEventArgs e)
|
|
{
|
|
this.MainWindow = new Forms.MainWindow();
|
|
this.MainWindow.Show();
|
|
}
|
|
}
|
|
}
|