This commit is contained in:
Steven Hobs
2026-02-12 23:35:48 +08:00
commit b03db7ac51
15 changed files with 1007 additions and 0 deletions

17
App.xaml.cs Normal file
View File

@@ -0,0 +1,17 @@
namespace MyApp;
public partial class App
{
private Window? window;
public App()
{
this.InitializeComponent();
}
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
window = new MainWindow();
window.Activate();
}
}