Files
wgu-c971/WguApp/App.xaml.cs
2025-11-25 23:26:56 -06:00

14 lines
258 B
C#

namespace WguApp;
public partial class App : Application
{
public App()
{
InitializeComponent();
}
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new AppShell());
}
}