2020-01-06 04:49:11 +00:00
|
|
|
<rxui:ReactiveUserControl
|
2020-01-05 03:09:02 +00:00
|
|
|
x:Class="Wabbajack.SettingsView"
|
|
|
|
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:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
|
|
|
|
xmlns:local="clr-namespace:Wabbajack"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2020-01-06 04:49:11 +00:00
|
|
|
xmlns:rxui="http://reactiveui.net"
|
2020-01-05 03:09:02 +00:00
|
|
|
d:DesignHeight="450"
|
|
|
|
d:DesignWidth="800"
|
2020-01-06 04:49:11 +00:00
|
|
|
x:TypeArguments="local:SettingsVM"
|
2020-01-05 03:09:02 +00:00
|
|
|
mc:Ignorable="d">
|
2020-01-06 04:49:11 +00:00
|
|
|
<UserControl.Resources>
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
<Setter Property="FontFamily" Value="Lucida Sans" />
|
|
|
|
<Setter Property="FontWeight" Value="Bold" />
|
|
|
|
<Setter Property="FontSize" Value="12" />
|
|
|
|
</Style>
|
|
|
|
</UserControl.Resources>
|
2020-01-05 03:09:02 +00:00
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="47" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<local:TopProgressView
|
|
|
|
Title="Settings"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
ShadowMargin="False" />
|
|
|
|
<Button
|
|
|
|
x:Name="BackButton"
|
|
|
|
Grid.Row="0"
|
|
|
|
Width="30"
|
|
|
|
Height="30"
|
|
|
|
Margin="7,5,0,0"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
Style="{StaticResource IconCircleButtonStyle}"
|
|
|
|
ToolTip="Back to main menu">
|
|
|
|
<iconPacks:PackIconMaterial Foreground="{Binding Foreground, RelativeSource={RelativeSource AncestorType={x:Type Button}}}" Kind="ArrowLeft" />
|
|
|
|
</Button>
|
2020-01-06 04:49:11 +00:00
|
|
|
<ScrollViewer
|
|
|
|
Grid.Row="1"
|
|
|
|
Focusable="False"
|
|
|
|
VerticalScrollBarVisibility="Auto">
|
|
|
|
<WrapPanel>
|
|
|
|
<local:LoginSettingsView x:Name="LoginView" />
|
|
|
|
<local:PerformanceSettingsView x:Name="PerformanceView" />
|
|
|
|
</WrapPanel>
|
|
|
|
</ScrollViewer>
|
2020-01-05 03:09:02 +00:00
|
|
|
</Grid>
|
2020-01-06 04:49:11 +00:00
|
|
|
</rxui:ReactiveUserControl>
|