ps2_manager/PS2_Manager/ConvertGameWindow.axaml
WeeXnes 4eb2d47adf
All checks were successful
Java CI / test (push) Successful in 1m29s
added a bin to iso converter
2025-04-27 20:20:51 +02:00

31 lines
1.6 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="PS2_Manager.ConvertGameWindow"
Title="Convert BIN to ISO"
Height="349"
Width="598"
CanResize="False"
WindowStartupLocation="CenterScreen"
Background="#201c29"
Loaded="Control_OnLoaded"
Closing="Window_OnClosing">
<Grid RowDefinitions="80, *, 80">
<TextBlock Name="Label_1" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<Border Grid.Row="1" CornerRadius="10" Background="#35313d" Margin="10, 0">
<Grid ColumnDefinitions="*,*,*">
<Border Grid.Column="0" Background="#201c29" Margin="10" CornerRadius="7">
</Border>
<Border Grid.Column="2" Background="#201c29" Margin="10" CornerRadius="7">
</Border>
</Grid>
</Border>
<Button Click="ConvertButton_OnClick" Name="ConvertButton" Grid.Row="2" Content="Convert" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,0"/>
</Grid>
</Window>