ps2_manager/PS2_Manager/MainWindow.axaml
2025-04-19 22:30:22 +02:00

39 lines
2 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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="PS2_Manager.MainWindow"
Title="PS2_Manager"
Background="#201c29"
SystemDecorations="None"
Width="880"
Height="520"
Loaded="Control_OnLoaded">
<Grid RowDefinitions="20, *">
<Grid Grid.Row="0">
<Border Background="#35313d"
PointerPressed="WindowDrag">
<Grid ColumnDefinitions="*, 20">
<TextBlock Name="WindowTitle" FontSize="12" Padding="8,0,0,0" VerticalAlignment="Center"/>
<Border Grid.Column="1" Background="#625f69" PointerPressed="WindowClose">
<TextBlock FontSize="12" Text="×" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</Grid>
</Border>
</Grid>
<Grid Grid.Row="1">
<Border Background="Red" CornerRadius="0" Margin="8">
<Grid ColumnDefinitions="300, *">
<Border Background="Aqua">
<ListBox Name="GamesList"></ListBox>
</Border>
<Border Grid.Column="1" Background="Aqua">
<Button Click="OpenFileButton_Clicked" Content="Install Game"></Button>
</Border>
</Grid>
</Border>
</Grid>
</Grid>
</Window>