2019-10-12 18:18:21 +00:00
|
|
|
<Window
|
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"
|
|
|
|
xmlns:local="clr-namespace:Wabbajack"
|
|
|
|
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-10-22 01:08:26 +00:00
|
|
|
Icon="../Resources/Icons/wabbajack.ico"
|
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}}"
|
2019-11-10 02:38:44 +00:00
|
|
|
UseLayoutRounding="True"
|
2019-10-11 22:30:12 +00:00
|
|
|
WindowStyle="ToolWindow"
|
|
|
|
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}">
|
2019-10-25 04:26:29 +00:00
|
|
|
<local:CompilerView />
|
|
|
|
</DataTemplate>
|
2019-11-02 00:17:23 +00:00
|
|
|
<DataTemplate DataType="{x:Type local:InstallerVM}">
|
2019-10-25 04:26:29 +00:00
|
|
|
<local:InstallationView />
|
|
|
|
</DataTemplate>
|
|
|
|
</ContentPresenter.Resources>
|
|
|
|
</ContentPresenter>
|
2019-10-14 00:56:09 +00:00
|
|
|
</Window>
|