ps2_manager/PS2_Manager/ConvertGameWindow.axaml
WeeXnes 1eaf8c2580
All checks were successful
Java CI / test (push) Successful in 1m25s
Finished ConvertGameWindow.axaml
2025-04-27 21:13:51 +02:00

33 lines
1.9 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="260"
Width="398"
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="100,*,100">
<Border Grid.Column="0" Background="#201c29" Margin="10" CornerRadius="7">
<Image Margin="10" RenderOptions.BitmapInterpolationMode="HighQuality" Source="Assets/bin.png"/>
</Border>
<TextBlock Grid.Column="1" FontSize="25" Text="→" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<Border Grid.Column="2" Background="#201c29" Margin="10" CornerRadius="7">
<Image Margin="10" RenderOptions.BitmapInterpolationMode="HighQuality" Source="Assets/cd.png"/>
</Border>
</Grid>
</Border>
<Button Click="ConvertButton_OnClick" Name="ConvertButton" Grid.Row="2" Content="Convert" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,0"/>
</Grid>
</Window>