15 lines
1 KiB
XML
15 lines
1 KiB
XML
<UserControl 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"
|
|
x:Class="PS2_Manager.Welcome">
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Stretch" VerticalAlignment="Center" Spacing="10">
|
|
<TextBlock Text="Welcome to the PS2 Games Manager" HorizontalAlignment="Center" FontSize="18" FontWeight="Bold"/>
|
|
<Separator HorizontalAlignment="Center"/>
|
|
<TextBlock Text="by WeeXnes" HorizontalAlignment="Center" FontStyle="Italic"/>
|
|
<Separator HorizontalAlignment="Center"/>
|
|
<TextBlock Text="Check out the source code and contribute at:" HorizontalAlignment="Center" Margin="10"/>
|
|
<Button Content="PS2 Manager Repository" HorizontalAlignment="Center" Click="OnRepositoryLinkClicked"/>
|
|
</StackPanel>
|
|
</UserControl>
|