-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppShell.xaml
35 lines (29 loc) · 1.07 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
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="MauiController.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MauiController"
Shell.FlyoutBehavior="Flyout"
Title="MauiController">
<Shell.Resources>
<ResourceDictionary>
<Style x:Key="BaseStyle" TargetType="Element">
<Setter Property="Shell.BackgroundColor" Value="White"/>
</Style>
</ResourceDictionary>
</Shell.Resources>
<FlyoutItem Title="PedalBoard Controller" FlyoutDisplayOptions="AsMultipleItems" x:Name="MainPageTab">
<ShellContent
Title="Home"
ContentTemplate ="{DataTemplate local:MainPage}"
Route="MainPage"
x:Name="MainPageFlyoutItem"
Icon="dotnet_bot.png"/>
<!--<ShellContent
Title="test"
ContentTemplate ="{DataTemplate local:TestPage}"
Route="MainPage"
Icon="add.png"/>-->
</FlyoutItem>
</Shell>