15 lines
239 B
C#
15 lines
239 B
C#
|
|
// App.xaml.cs - Main Application code-behind
|
||
|
|
|
||
|
|
using Microsoft.Maui.Controls;
|
||
|
|
|
||
|
|
namespace ShellDemo;
|
||
|
|
|
||
|
|
public partial class App : Application
|
||
|
|
{
|
||
|
|
public App()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
MainPage = new AppShell();
|
||
|
|
}
|
||
|
|
}
|