-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml
More file actions
32 lines (26 loc) · 905 Bytes
/
Copy pathAppShell.xaml
File metadata and controls
32 lines (26 loc) · 905 Bytes
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
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="STFREYA.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:STFREYA"
xmlns:views="clr-namespace:STFREYA.View"
Shell.FlyoutBehavior="Disabled"
Title="STFREYA">
<ShellContent
Title="Home"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="Students"
ContentTemplate="{DataTemplate views:StudentView}"
Route="StudentView" />
<ShellContent
Title="Student list"
ContentTemplate="{DataTemplate views:StudentList}"
Route="StudentList" />
<ShellContent
Title="Student list"
ContentTemplate="{DataTemplate views:StudentProfileView}"
Route="StudentProfileView" />
</Shell>