-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppShell.xaml
31 lines (27 loc) · 923 Bytes
/
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
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="BambuLab_FailureDetection.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BambuLab_FailureDetection"
Shell.FlyoutBehavior="Disabled"
Title="BambuLab_FailureDetection">
<ShellContent
Title="Home"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<ShellContent
Title="Settings"
ContentTemplate="{DataTemplate local:MainPage}"
Route="Views/Settings" />
<ShellContent
Title="Settings"
ContentTemplate="{DataTemplate local:MainPage}"
Route="Views/NewSettings"
></ShellContent>
<ShellContent
Title="View Printer"
ContentTemplate="{DataTemplate local:MainPage}"
Route="Views/ViewPrinter"
></ShellContent>
</Shell>