-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShell.xaml
More file actions
27 lines (25 loc) · 961 Bytes
/
Copy pathShell.xaml
File metadata and controls
27 lines (25 loc) · 961 Bytes
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
<?xml version="1.0" encoding="utf-8" ?>
<Page
x:Class="WinUIDemoApp.Shell"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="using:WinUIDemoApp"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Background="Transparent"
mc:Ignorable="d">
<NavigationView SelectionChanged="NavigationView_SelectionChanged">
<NavigationView.MenuItems>
<NavigationViewItem
Content="Home"
Icon="Home"
IsSelected="True"
Tag="WinUIDemoApp.HomePage" />
<NavigationViewItem
Content="Page 1"
Icon="Emoji"
Tag="WinUIDemoApp.Page1" />
</NavigationView.MenuItems>
<Frame x:Name="ContentFrame" />
</NavigationView>
</Page>