16 lines
330 B
C#
16 lines
330 B
C#
namespace MauiApp1
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override Window CreateWindow(IActivationState? activationState)
|
|
{
|
|
return new Window(new MainPage()) { Title = "MauiApp1" };
|
|
}
|
|
}
|
|
}
|