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 x:Class="Wabbajack.Launcher.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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:Wabbajack.Launcher"
|
|
mc:Ignorable="d"
|
|
Title="Wabbajack Launcher" Height="320" Width="600"
|
|
WindowStyle="None"
|
|
Background="#121212"
|
|
BorderThickness="0"
|
|
AllowsTransparency="False"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="275"></RowDefinition>
|
|
<RowDefinition Height="45"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Image Grid.Row="0" Source="Wabba_Mouth_Small.png"></Image>
|
|
<Label Grid.Row="1" Foreground="White" FontSize="20" Content="{Binding Status}"></Label>
|
|
</Grid>
|
|
</Window>
|