33 lines
1.1 KiB
XML
33 lines
1.1 KiB
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">
|
|
<Window.SystemBackdrop>
|
|
<MicaBackdrop />
|
|
</Window.SystemBackdrop>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="43" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Border Grid.Row="0">
|
|
<TextBlock
|
|
Margin="15,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Text="Settings" />
|
|
</Border>
|
|
<NavigationView
|
|
Grid.Row="1"
|
|
IsBackButtonVisible="Collapsed"
|
|
IsPaneToggleButtonVisible="False"
|
|
IsSettingsVisible="False"
|
|
MenuItemTemplateSelector="{Binding ViewModelTemplateSelector}"
|
|
MenuItemsSource="{x:Bind ViewModel, Mode=OneWay}">
|
|
<ContentControl
|
|
x:Name="Settings"
|
|
Margin="12"
|
|
HorizontalContentAlignment="Stretch" />
|
|
</NavigationView>
|
|
</Grid>
|
|
</Window> |