2019-11-25 05:43:56 +00:00
|
|
|
<mahapps:MetroWindow
|
2019-10-11 22:30:12 +00:00
|
|
|
x:Class="Wabbajack.MainWindow"
|
|
|
|
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"
|
2020-01-05 03:09:02 +00:00
|
|
|
xmlns:icon="http://metro.mahapps.com/winfx/xaml/iconpacks"
|
2019-10-11 22:30:12 +00:00
|
|
|
xmlns:local="clr-namespace:Wabbajack"
|
2019-11-25 05:43:56 +00:00
|
|
|
xmlns:mahapps="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
|
2019-10-11 22:30:12 +00:00
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
Title="Wabbajack"
|
|
|
|
Width="1280"
|
|
|
|
Height="960"
|
2019-10-30 19:45:42 +00:00
|
|
|
MinWidth="850"
|
|
|
|
MinHeight="650"
|
2019-10-11 22:30:12 +00:00
|
|
|
Closing="Window_Closing"
|
2019-11-10 02:38:44 +00:00
|
|
|
RenderOptions.BitmapScalingMode="HighQuality"
|
2019-10-11 22:30:12 +00:00
|
|
|
ResizeMode="CanResize"
|
|
|
|
Style="{StaticResource {x:Type Window}}"
|
2020-01-25 23:25:51 +00:00
|
|
|
TitleBarHeight="25"
|
2019-11-10 02:38:44 +00:00
|
|
|
UseLayoutRounding="True"
|
2020-01-25 23:25:51 +00:00
|
|
|
WindowTitleBrush="{StaticResource MahApps.Brushes.Accent}"
|
2019-10-11 22:30:12 +00:00
|
|
|
mc:Ignorable="d">
|
2019-11-02 00:17:23 +00:00
|
|
|
<ContentPresenter Content="{Binding ActivePane}">
|
2019-10-25 04:26:29 +00:00
|
|
|
<ContentPresenter.Resources>
|
2019-11-02 00:17:23 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:CompilerVM}">
|
2020-01-20 21:59:26 +00:00
|
|
|
<local:CompilerView ViewModel="{Binding}" />
|
2019-10-25 04:26:29 +00:00
|
|
|
</DataTemplate>
|
2019-11-02 00:17:23 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:InstallerVM}">
|
2020-01-21 01:07:41 +00:00
|
|
|
<local:InstallationView ViewModel="{Binding}" />
|
2019-10-25 04:26:29 +00:00
|
|
|
</DataTemplate>
|
2019-11-24 08:12:28 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:ModeSelectionVM}">
|
2020-02-02 07:33:12 +00:00
|
|
|
<local:ModeSelectionView ViewModel="{Binding}" />
|
2019-11-24 08:12:28 +00:00
|
|
|
</DataTemplate>
|
2019-11-30 09:08:04 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:ModListGalleryVM}">
|
2020-01-19 04:01:51 +00:00
|
|
|
<local:ModListGalleryView ViewModel="{Binding}" />
|
2019-11-30 09:08:04 +00:00
|
|
|
</DataTemplate>
|
2019-12-07 00:13:16 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:WebBrowserVM}">
|
|
|
|
<local:WebBrowserView />
|
|
|
|
</DataTemplate>
|
2020-02-07 13:26:58 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:BethesdaNetLoginVM}">
|
|
|
|
<local:BethesdaNetLoginView />
|
|
|
|
</DataTemplate>
|
2020-01-05 03:09:02 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:SettingsVM}">
|
2020-01-06 04:49:11 +00:00
|
|
|
<local:SettingsView ViewModel="{Binding}" />
|
2020-01-05 03:09:02 +00:00
|
|
|
</DataTemplate>
|
2019-10-25 04:26:29 +00:00
|
|
|
</ContentPresenter.Resources>
|
|
|
|
</ContentPresenter>
|
2019-12-14 23:31:53 +00:00
|
|
|
|
|
|
|
<mahapps:MetroWindow.RightWindowCommands>
|
|
|
|
<mahapps:WindowCommands>
|
2020-01-05 03:09:02 +00:00
|
|
|
<mahapps:WindowCommands.Resources>
|
|
|
|
<Style BasedOn="{StaticResource IconBareButtonStyle}" TargetType="Button" />
|
|
|
|
</mahapps:WindowCommands.Resources>
|
|
|
|
<Button
|
|
|
|
Margin="5,0"
|
|
|
|
Command="{Binding CopyVersionCommand}"
|
|
|
|
Content="{Binding VersionDisplay}">
|
2019-12-14 23:31:53 +00:00
|
|
|
<Button.ToolTip>
|
|
|
|
<TextBlock>
|
|
|
|
Wabbajack Version<LineBreak />
|
|
|
|
Click to copy to clipboard</TextBlock>
|
|
|
|
</Button.ToolTip>
|
|
|
|
</Button>
|
2020-01-05 03:09:02 +00:00
|
|
|
<Button
|
|
|
|
Grid.Column="1"
|
|
|
|
Margin="5,0"
|
|
|
|
Command="{Binding OpenSettingsCommand}">
|
|
|
|
<icon:PackIconMaterial
|
|
|
|
Width="17"
|
|
|
|
Height="17"
|
|
|
|
Kind="Settings" />
|
|
|
|
</Button>
|
2019-12-14 23:31:53 +00:00
|
|
|
</mahapps:WindowCommands>
|
|
|
|
</mahapps:MetroWindow.RightWindowCommands>
|
2019-11-25 05:43:56 +00:00
|
|
|
</mahapps:MetroWindow>
|