mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Wabbajack.Launcher.Views.MainWindow"
|
|
Icon="/Assets/wabbajack.ico"
|
|
|
|
Title="Wabbajack Launcher" Height="320" Width="600"
|
|
Background="#121212"
|
|
BorderThickness="0"
|
|
WindowStartupLocation="CenterScreen"
|
|
ExtendClientAreaToDecorationsHint="True"
|
|
ExtendClientAreaChromeHints="NoChrome"
|
|
ExtendClientAreaTitleBarHeightHint="-1">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="275" />
|
|
<RowDefinition Height="45" />
|
|
</Grid.RowDefinitions>
|
|
<Image Grid.Row="0" Source="/Assets/Wabba_Mouth_Small.png" />
|
|
<Label Grid.Row="1" Margin="4" Foreground="White" FontSize="20" Content="{Binding Status}" />
|
|
</Grid>
|
|
</Window> |