Files
WinUI.Template/App.xaml.cs
Steven Hobs d451e738b0 init
2026-03-03 02:04:30 +08:00

19 lines
305 B
C#

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();
}
}