-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppShell.xaml
37 lines (35 loc) · 1.17 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
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="ohj1v0._1.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ohj1v0._1"
Shell.FlyoutBehavior="Disabled"
Title="CottagERP">
<FlyoutItem>
<ShellContent
Title="Alueet"
ContentTemplate="{DataTemplate local:Alueet}" />
<ShellContent
Title="Mökit"
ContentTemplate="{DataTemplate local:Mokit}" />
<ShellContent
Title="Palvelut"
ContentTemplate="{DataTemplate local:Palvelut}" />
<ShellContent
Title="Asiakkaat"
ContentTemplate="{DataTemplate local:Asiakkaat}" />
<ShellContent
Title="Varaukset"
ContentTemplate="{DataTemplate local:Varaukset}" />
<ShellContent
Title="Laskut"
ContentTemplate="{DataTemplate local:Laskut}" />
<ShellContent
Title="Raportit"
ContentTemplate="{DataTemplate local:Raportit}" />
<ShellContent
Title="Tee uusi varaus"
ContentTemplate="{DataTemplate local:TeeUusiVaraus}" />
</FlyoutItem>
</Shell>