Finished ConvertGameWindow.axaml
All checks were successful
Java CI / test (push) Successful in 1m25s
All checks were successful
Java CI / test (push) Successful in 1m25s
This commit is contained in:
parent
4eb2d47adf
commit
1eaf8c2580
3 changed files with 9 additions and 5 deletions
BIN
PS2_Manager/Assets/bin.png
Normal file
BIN
PS2_Manager/Assets/bin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 208 KiB |
|
@ -5,8 +5,8 @@
|
||||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||||
x:Class="PS2_Manager.ConvertGameWindow"
|
x:Class="PS2_Manager.ConvertGameWindow"
|
||||||
Title="Convert BIN to ISO"
|
Title="Convert BIN to ISO"
|
||||||
Height="349"
|
Height="260"
|
||||||
Width="598"
|
Width="398"
|
||||||
CanResize="False"
|
CanResize="False"
|
||||||
WindowStartupLocation="CenterScreen"
|
WindowStartupLocation="CenterScreen"
|
||||||
Background="#201c29"
|
Background="#201c29"
|
||||||
|
@ -15,17 +15,19 @@
|
||||||
<Grid RowDefinitions="80, *, 80">
|
<Grid RowDefinitions="80, *, 80">
|
||||||
<TextBlock Name="Label_1" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
<TextBlock Name="Label_1" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||||
<Border Grid.Row="1" CornerRadius="10" Background="#35313d" Margin="10, 0">
|
<Border Grid.Row="1" CornerRadius="10" Background="#35313d" Margin="10, 0">
|
||||||
<Grid ColumnDefinitions="*,*,*">
|
<Grid ColumnDefinitions="100,*,100">
|
||||||
<Border Grid.Column="0" Background="#201c29" Margin="10" CornerRadius="7">
|
<Border Grid.Column="0" Background="#201c29" Margin="10" CornerRadius="7">
|
||||||
|
<Image Margin="10" RenderOptions.BitmapInterpolationMode="HighQuality" Source="Assets/bin.png"/>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
||||||
|
<TextBlock Grid.Column="1" FontSize="25" Text="→" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||||
|
|
||||||
<Border Grid.Column="2" Background="#201c29" Margin="10" CornerRadius="7">
|
<Border Grid.Column="2" Background="#201c29" Margin="10" CornerRadius="7">
|
||||||
|
<Image Margin="10" RenderOptions.BitmapInterpolationMode="HighQuality" Source="Assets/cd.png"/>
|
||||||
</Border>
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
<Button Click="ConvertButton_OnClick" Name="ConvertButton" Grid.Row="2" Content="Convert" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,0"/>
|
<Button Click="ConvertButton_OnClick" Name="ConvertButton" Grid.Row="2" Content="Convert" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,0"/>
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
</Window>
|
</Window>
|
||||||
|
|
|
@ -31,5 +31,7 @@
|
||||||
<AvaloniaResource Include="Assets\cd.png" />
|
<AvaloniaResource Include="Assets\cd.png" />
|
||||||
<None Remove="Images\dvd.png" />
|
<None Remove="Images\dvd.png" />
|
||||||
<AvaloniaResource Include="Assets\dvd.png" />
|
<AvaloniaResource Include="Assets\dvd.png" />
|
||||||
|
<None Remove="Assets\bin.png" />
|
||||||
|
<AvaloniaResource Include="Assets\bin.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Add table
Reference in a new issue