2024-03-07 21:04:59 +08:00
<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>
2024-03-09 18:29:16 +08:00
<TextBlock x:Name="info" Text=" 灵依游戏大厅 The best luancher Power by DDF" Margin="30,150,30,30" HorizontalAlignment="Center" Foreground="#2e4e7e" FontSize="16"/>
2024-03-07 22:50:28 +08:00
<TextBlock Text="Contact me" HorizontalAlignment="Center" Foreground="#FF81EB78"/>
2024-03-07 21:04:59 +08:00
<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>