This commit is contained in:
Steven Hobs
2026-03-03 02:04:30 +08:00
commit d451e738b0
12 changed files with 1034 additions and 0 deletions

18
App.xaml.cs Normal file
View File

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