18 lines
653 B
XML
18 lines
653 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Window
|
|
x:Class="Hyperbar.Windows.SettingsView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ui="using:Hyperbar.UI.Windows"
|
|
xmlns:windows="using:Hyperbar.Windows">
|
|
<Window.SystemBackdrop>
|
|
<MicaBackdrop />
|
|
</Window.SystemBackdrop>
|
|
<NavigationView
|
|
IsBackButtonVisible="Collapsed"
|
|
IsPaneToggleButtonVisible="False"
|
|
IsSettingsVisible="False"
|
|
MenuItemTemplateSelector="{ui:ViewModelTemplate}"
|
|
MenuItemsSource="{x:Bind ViewModel, Mode=OneWay}" />
|
|
</Window>
|