-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsPage.xaml
20 lines (20 loc) · 1.29 KB
/
SettingsPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8" ?>
<Page x:Class="hyzjkz.SettingsPage"
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:hyzjkz"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
NavigationCacheMode="Required" mc:Ignorable="d">
<NavigationView x:Name="NV_Main" IsBackButtonVisible="Collapsed"
IsSettingsVisible="False" PaneDisplayMode="Left"
PaneTitle="{StaticResource MainWindow.NVI_Settings.Text}"
SelectionChanged="NV_Main_SelectionChanged">
<NavigationView.MenuItems>
<NavigationViewItem x:Name="NVI_Home" Content="{StaticResource SettingsPage.NVI_Home.Text}" Icon="Home" />
<NavigationViewItem x:Name="NVI_Path" Content="{StaticResource SettingsPage.NVI_Path.Text}" Icon="MoveToFolder" />
<NavigationViewItem x:Name="NVI_Business" Content="{StaticResource SettingsPage.NVI_Business.Text}" Icon="Globe" />
<NavigationViewItem x:Name="NVI_Print" Content="{StaticResource SettingsPage.NVI_Print.Text}" Icon="Print" />
</NavigationView.MenuItems>
</NavigationView>
</Page>