2
0
Files
maui-linux-samples/ShellDemo/App.xaml.cs

19 lines
338 B
C#
Raw Normal View History

2026-01-11 12:33:48 -05:00
// App.xaml.cs - Main Application code-behind
using Microsoft.Maui.Controls;
namespace ShellDemo;
public partial class App : Application
{
public App()
{
InitializeComponent();
2026-01-17 05:42:44 +00:00
}
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new AppShell());
2026-01-11 12:33:48 -05:00
}
}