-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppShell.xaml
97 lines (81 loc) · 2.63 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="BigBazar.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BigBazar"
xmlns:views="clr-namespace:BigBazar.Views"
FlyoutBehavior="Flyout"
FlyoutItemIsVisible="True"
Title="Big Bazar">
<MenuFlyoutSeparator />
<FlyoutItem Title="Home page"
FlyoutIcon="shellhome24.png" >
<Tab>
<ShellContent
Title="Home Page"
ContentTemplate="{DataTemplate views:MainPage}"
Route="MainPage" />
</Tab>
</FlyoutItem>
<MenuFlyoutSeparator />
<FlyoutItem Title="Box List" Icon="shellboxes.png">
<Tab>
<ShellContent
Title="Box List"
ContentTemplate="{DataTemplate views:BoxListPage}"
Route="BoxList" />
</Tab>
</FlyoutItem>
<FlyoutItem Title="Gallery" Icon="shellgallery.png">
<Tab>
<ShellContent
Title="Photo Gallery"
ContentTemplate="{DataTemplate views:GalleryPage}"
Route="Gallery" />
</Tab>
</FlyoutItem>
<MenuFlyoutSeparator />
<FlyoutItem Title="Add new box" Icon="shellboxadd.png">
<Tab>
<ShellContent
Title="New Box"
ContentTemplate="{DataTemplate views:AddBoxPage}"
Route="NewBox" />
</Tab>
</FlyoutItem>
<FlyoutItem Title="Categories" Icon="shellcategory.png">
<Tab>
<ShellContent
Title="Categories"
ContentTemplate="{DataTemplate views:CategoryPage}"
Route="Categories" />
</Tab>
</FlyoutItem>
<FlyoutItem Title="Storage Areas" Icon="areas.png">
<Tab>
<ShellContent
Title="Storage Areas" Icon="areas.png"
ContentTemplate="{DataTemplate views:AreaPage}"
Route="Areas" />
</Tab>
</FlyoutItem>
<MenuFlyoutSeparator />
<FlyoutItem Title="Logs" Icon="shelllogs.png">
<Tab>
<ShellContent
Title="Logs"
ContentTemplate="{DataTemplate views:LogPage}"
Route="Logs" />
</Tab>
</FlyoutItem>
<MenuFlyoutSeparator />
<FlyoutItem Title="About" Icon="shellabout.png">
<Tab>
<ShellContent
Title="About App"
ContentTemplate="{DataTemplate views:AboutPage}"
Route="About" />
</Tab>
</FlyoutItem>
</Shell>