30 lines
1.5 KiB
XML
30 lines
1.5 KiB
XML
<Window x:Class="Zerolauncher.AboutDialog.About1"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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"
|
|
Title="About" Height="384" Width="700">
|
|
<Grid>
|
|
<Image Source="/res/about1.png" Stretch="Fill"/>
|
|
<DockPanel>
|
|
<TextBlock Text="关 于" Margin="20" FontSize="50" Foreground="OrangeRed"/>
|
|
<StackPanel>
|
|
<TextBlock x:Name="info" Text=" 灵依游戏大厅 The best luancher Power by DDF" Margin="30,150,30,30" HorizontalAlignment="Center" Foreground="#2e4e7e" FontSize="16"/>
|
|
<TextBlock Text="Contact me" HorizontalAlignment="Center" Foreground="#FF81EB78"/>
|
|
<TextBlock HorizontalAlignment="Center">
|
|
<Hyperlink NavigateUri="https://github.com/1415ddfer/ZeroHelper" Click="Hyperlink_Click">
|
|
My GitHub
|
|
</Hyperlink>
|
|
</TextBlock>
|
|
<TextBlock HorizontalAlignment="Center">
|
|
<Hyperlink NavigateUri="http://www.example.com" Click="Hyperlink_Click_1">
|
|
ddfgame@foxmail.com
|
|
</Hyperlink>
|
|
</TextBlock>
|
|
</StackPanel>
|
|
<Label/>
|
|
</DockPanel>
|
|
</Grid>
|
|
</Window>
|