-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml
More file actions
74 lines (58 loc) · 1.82 KB
/
AppShell.xaml
File metadata and controls
74 lines (58 loc) · 1.82 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="seeri.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:seeri"
Shell.FlyoutBehavior="Flyout"
Shell.ForegroundColor="#000080"
Title="seeri">
<ShellContent
Title="Home"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="Upcoming Events"
ContentTemplate="{DataTemplate local:UpcomingEvents}"
Route="UpcomingEvents" />
<ShellContent
Title="About Us"
ContentTemplate="{DataTemplate local:AboutUs}"
Route="AboutUs" />
<ShellContent
Title="Contact Us"
ContentTemplate="{DataTemplate local:ContactUs}"
Route="ContactUs" />
<ShellContent
Title="Version 1.0 (Powered by sojan.net)"
/>
</Shell>
<!--<ShellContent
Title="EventsNew"
ContentTemplate="{DataTemplate local:EventsNew}"
Route="EventsNew" />-->
<!--<ShellContent
Title="Upcoming Events"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="Gallery"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="About Us"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="Feedback form"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="Contact Us"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="VerticalListPage"
ContentTemplate="{DataTemplate local:VerticalListPage}"
Route="VerticalListPage" />
</Shell> -->