-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
26 lines (22 loc) · 1.11 KB
/
MainWindow.xaml
File metadata and controls
26 lines (22 loc) · 1.11 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
<Window x:Class="NodaStack.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ui="http://schemas.modernwpf.com/2019"
Title="NodaStack"
Height="800" Width="1200"
WindowStartupLocation="CenterScreen"
ui:WindowHelper.UseModernWindowStyle="True">
<ui:NavigationView x:Name="NavView"
IsSettingsVisible="True"
PaneDisplayMode="Left"
SelectionChanged="NavView_SelectionChanged"
Loaded="NavView_Loaded">
<ui:NavigationView.MenuItems>
<ui:NavigationViewItem Content="Dashboard" Tag="dashboard" Icon="Home"/>
<ui:NavigationViewItem Content="Monitoring" Tag="monitoring" Icon="OutlineStar"/>
<ui:NavigationViewItem Content="Backups" Tag="backups" Icon="Save"/>
</ui:NavigationView.MenuItems>
<!-- Frame de navigation -->
<Frame x:Name="ContentFrame" NavigationUIVisibility="Hidden"/>
</ui:NavigationView>
</Window>