-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppShell.xaml
41 lines (33 loc) · 1.04 KB
/
AppShell.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="PFBv01.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:PFBv01"
Shell.FlyoutBehavior="Flyout"
Title="PFBv01">
<ShellContent
x:Name="MainPageShellContent"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="How to Play"
ContentTemplate="{DataTemplate local:HowToPlay}"
Route="HowToPlay" />
<ShellContent
Title="Game Settings"
ContentTemplate="{DataTemplate local:GameSettings}"
Route="GameSettings" />
<ShellContent
Title="About PFB"
ContentTemplate="{DataTemplate local:About}"
Route="About" />
<ShellContent
Title="CaroScroll"
ContentTemplate="{DataTemplate local:CaroScroll}"
Route="CaroScroll" />
<ShellContent
Title="ScrollView"
ContentTemplate="{DataTemplate local:ScrollView}"
Route="ScrollView" />
</Shell>