ZeroLauncher/AboutDialog/About1.xaml

55 lines
3.1 KiB
Plaintext
Raw Permalink Normal View History

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"
2024-03-18 22:59:51 +08:00
AllowsTransparency="True" WindowStyle="None" Background="Transparent"
Title="About" Height="384" Width="700" MouseLeftButtonDown="Window_MouseLeftButtonDown">
2024-03-07 21:04:59 +08:00
<Grid>
<Image Source="/res/about1.png" Stretch="Fill"/>
2024-03-18 22:59:51 +08:00
<DockPanel Margin="145,100,150,45">
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal">
<Button Background="Transparent" Height="30" Width="35" Click="Button_Click">
<Button.Style>
<Style TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border Name="border" BorderThickness="0" BorderBrush="Black" Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Opacity" Value="0.55" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Button.Style>
<Image Source="/res/close.png" Height="25"/>
</Button>
</StackPanel>
<StackPanel VerticalAlignment="Bottom">
<TextBlock Text="关于" FontSize="35" Foreground="OrangeRed" VerticalAlignment="Top" HorizontalAlignment="Center" Margin="0,0,0,30"/>
<TextBlock x:Name="info" Text=" 灵依游戏大厅&#13;&#13;The best luancher&#13; Power by DDF" 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>