33 lines
1.8 KiB
XML
33 lines
1.8 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.Setup"
|
|
WindowStartupLocation="CenterScreen"
|
|
SystemDecorations="None"
|
|
Title="Setup"
|
|
Height="349"
|
|
Width="598"
|
|
Background="#201c29"
|
|
Closing="Window_OnClosing">
|
|
<Grid RowDefinitions="20, *">
|
|
<Grid Grid.Row="0">
|
|
<Border Background="#35313d"
|
|
PointerPressed="WindowDrag">
|
|
<Grid ColumnDefinitions="*, 20">
|
|
<TextBlock Name="WindowTitle" FontSize="12" Text="Setup PS2 Manager" Padding="8,0,0,0" VerticalAlignment="Center"/>
|
|
</Grid>
|
|
</Border>
|
|
</Grid>
|
|
<Grid Grid.Row="1" Margin="20">
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBlock Name="InfoText1" Text="Welcome to PS2 Manager" HorizontalAlignment="Center"/>
|
|
<Separator/>
|
|
<TextBlock Name="InfoText2" Text="First of all please select the path to your PS2 Game Library" HorizontalAlignment="Center"/>
|
|
<Button Name="OpenLibraryButton" Content="Select Folder" HorizontalAlignment="Center" Margin="0,10"
|
|
Click="OpenLibraryButton_OnClick"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|