JPTest/App.xaml.cs
2025-04-30 15:31:46 -05:00

15 lines
304 B
C#

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