Files
MauiCourse/AdventureWorks.MAUI/App.xaml.cs
2025-08-17 08:19:53 +02:00

15 lines
317 B
C#

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