wabbajack/Wabbajack/Views/MainWindow.xaml

39 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-11-25 05:43:56 +00:00
<mahapps:MetroWindow
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"
2019-11-25 05:43:56 +00:00
xmlns:mahapps="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="Wabbajack"
Width="1280"
Height="960"
MinWidth="850"
MinHeight="650"
Closing="Window_Closing"
RenderOptions.BitmapScalingMode="HighQuality"
ResizeMode="CanResize"
Style="{StaticResource {x:Type Window}}"
2019-11-25 05:43:56 +00:00
TitlebarHeight="25"
UseLayoutRounding="True"
WindowStyle="ToolWindow"
mc:Ignorable="d">
2019-11-02 00:17:23 +00:00
<ContentPresenter Content="{Binding ActivePane}">
<ContentPresenter.Resources>
2019-11-02 00:17:23 +00:00
<DataTemplate DataType="{x:Type local:CompilerVM}">
<local:CompilerView />
</DataTemplate>
2019-11-02 00:17:23 +00:00
<DataTemplate DataType="{x:Type local:InstallerVM}">
<local:InstallationView />
</DataTemplate>
2019-11-24 08:12:28 +00:00
<DataTemplate DataType="{x:Type local:ModeSelectionVM}">
<local:ModeSelectionView />
</DataTemplate>
2019-11-30 09:08:04 +00:00
<DataTemplate DataType="{x:Type local:ModListGalleryVM}">
<local:ModListGalleryView />
</DataTemplate>
</ContentPresenter.Resources>
</ContentPresenter>
2019-11-25 05:43:56 +00:00
</mahapps:MetroWindow>