You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae201_qwirkle/Qwirkle/QwirkleViews/AppShell.xaml

41 lines
1.2 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="Qwirkle.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Qwirkle"
xmlns:localPages="clr-namespace:Qwirkle.Pages"
Shell.FlyoutBehavior="Disabled"
FlyoutBackgroundColor="White"
IsVisible="False"
>
<ShellContent
Title="MainPage"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="SetPlayers"
ContentTemplate="{DataTemplate localPages:SetPlayers}"
Route="SetPlayers" />
<ShellContent
Title="Gameboard"
ContentTemplate="{DataTemplate localPages:Gameboard}"
Route="Gameboard" />
<ShellContent
Title="Leaderboard"
ContentTemplate="{DataTemplate localPages:Leaderboard}"
Route="Leaderboard" />
<ShellContent
Title="Settings"
ContentTemplate="{DataTemplate localPages:Settings}"
Route="Settings" />
<ShellContent
Title="Credits"
ContentTemplate="{DataTemplate localPages:Credits}"
Route="Credits" />
</Shell>