mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 06:50:46 -05:00
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:PatchGenerator.ViewModels"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:cc="using:PatchGenerator.CustomControls"
|
|
xmlns:rxui="using:Avalonia.ReactiveUI"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="PatchGenerator.Views.MainWindow"
|
|
Icon="/Assets/avalonia-logo.ico"
|
|
Title="PatchGenerator"
|
|
Height="400" Width="800"
|
|
WindowStartupLocation="CenterScreen"
|
|
ExtendClientAreaToDecorationsHint="True"
|
|
ExtendClientAreaChromeHints="NoChrome"
|
|
ExtendClientAreaTitleBarHeightHint="-1"
|
|
Background="{StaticResource AKI_Background_Light}"
|
|
>
|
|
<Window.Styles>
|
|
<StyleInclude Source="/Assets/Styles.axaml"/>
|
|
</Window.Styles>
|
|
|
|
<Design.DataContext>
|
|
<vm:MainWindowViewModel/>
|
|
</Design.DataContext>
|
|
|
|
<Grid RowDefinitions="AUTO,*">
|
|
|
|
<cc:TitleBar Title="Patch Generator"
|
|
XButtonCommand="{Binding CloseCommand}"/>
|
|
|
|
<rxui:RoutedViewHost Router="{Binding Router}" Grid.Row="1" />
|
|
|
|
</Grid>
|
|
|
|
</Window>
|