Files
MVVMProject_MAUI/ModelViewViewModelProject/AppShell.xaml
T
2024-11-11 19:39:56 +01:00

17 lines
514 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="ModelViewViewModelProject.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ModelViewViewModelProject"
Shell.FlyoutBehavior="Disabled"
Shell.NavBarIsVisible="False"
Title="MVVM Type of Project">
<ShellContent
Title="Home"
ContentTemplate="{DataTemplate local:View.MainPage}"
Route="MainPage" />
</Shell>