mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
86330081f3
BitmapScalingMode high made some bitmaps look way better. UseLayoutRendering I've used elsewhere to good effect, and the same article recommended it. https://stackoverflow.com/questions/592017/my-images-are-blurry-why-isnt-wpfs-snapstodevicepixels-working
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<Window
|
|
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"
|
|
MinWidth="850"
|
|
MinHeight="650"
|
|
Closing="Window_Closing"
|
|
Icon="../Resources/Icons/wabbajack.ico"
|
|
RenderOptions.BitmapScalingMode="HighQuality"
|
|
ResizeMode="CanResize"
|
|
Style="{StaticResource {x:Type Window}}"
|
|
UseLayoutRounding="True"
|
|
WindowStyle="ToolWindow"
|
|
mc:Ignorable="d">
|
|
<ContentPresenter Content="{Binding ActivePane}">
|
|
<ContentPresenter.Resources>
|
|
<DataTemplate DataType="{x:Type local:CompilerVM}">
|
|
<local:CompilerView />
|
|
</DataTemplate>
|
|
<DataTemplate DataType="{x:Type local:InstallerVM}">
|
|
<local:InstallationView />
|
|
</DataTemplate>
|
|
</ContentPresenter.Resources>
|
|
</ContentPresenter>
|
|
</Window>
|