wabbajack/Wabbajack.Launcher/Views/MainWindow.axaml

24 lines
1.0 KiB
Plaintext
Raw Normal View History

2021-10-08 13:16:51 +00:00
<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"
2021-10-23 16:51:17 +00:00
2021-10-08 13:16:51 +00:00
Title="Wabbajack Launcher" Height="320" Width="600"
Background="#121212"
BorderThickness="0"
WindowStartupLocation="CenterScreen"
ExtendClientAreaToDecorationsHint="True"
ExtendClientAreaChromeHints="NoChrome"
2021-10-23 16:51:17 +00:00
ExtendClientAreaTitleBarHeightHint="-1">
2021-10-08 13:16:51 +00:00
<Grid>
<Grid.RowDefinitions>
2021-10-23 16:51:17 +00:00
<RowDefinition Height="275" />
<RowDefinition Height="45" />
2021-10-08 13:16:51 +00:00
</Grid.RowDefinitions>
2021-10-23 16:51:17 +00:00
<Image Grid.Row="0" Source="/Assets/Wabba_Mouth_Small.png" />
<Label Grid.Row="1" Margin="4" Foreground="White" FontSize="20" Content="{Binding Status}" />
2021-10-08 13:16:51 +00:00
</Grid>
2021-10-23 16:51:17 +00:00
</Window>