-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml
More file actions
36 lines (35 loc) · 1.59 KB
/
Copy pathAppShell.xaml
File metadata and controls
36 lines (35 loc) · 1.59 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
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="DockerDesktop.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:viewmodels="clr-namespace:DockerDesktop.ViewModels"
xmlns:views="clr-namespace:DockerDesktop.Views"
xmlns:local="clr-namespace:DockerDesktop"
FlyoutBehavior="Flyout"
Title="Docker Desktop">
<FlyoutItem Title="Dashboard">
<FlyoutItem.Icon>
<FontImageSource Glyph=""
FontFamily="faLight"
Color="Black"/>
</FlyoutItem.Icon>
<ShellContent ContentTemplate="{DataTemplate views:HomePage}"/>
</FlyoutItem>
<FlyoutItem Title="Container">
<FlyoutItem.Icon>
<FontImageSource Glyph=""
FontFamily="faLight"
Color="Black"/>
</FlyoutItem.Icon>
<ShellContent ContentTemplate="{DataTemplate views:ContainerPage}"/>
</FlyoutItem>
<FlyoutItem Title="Settings">
<FlyoutItem.Icon>
<FontImageSource Glyph=""
FontFamily="faLight"
Color="Black"/>
</FlyoutItem.Icon>
<ShellContent ContentTemplate="{DataTemplate views:SettingsPage}"/>
</FlyoutItem>
</Shell>