55 lines
3.1 KiB
XML
55 lines
3.1 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"
|
|
AllowsTransparency="True" WindowStyle="None" Background="Transparent"
|
|
Title="About" Height="384" Width="700" MouseLeftButtonDown="Window_MouseLeftButtonDown">
|
|
<Grid>
|
|
<Image Source="/res/about1.png" Stretch="Fill"/>
|
|
<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=" 灵依游戏大厅 The best luancher Power by DDF" 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">
|
|
@52Pojie
|
|
</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>
|