-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAboutDialog.xaml
53 lines (53 loc) · 2.87 KB
/
AboutDialog.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Window x:Class="Planter.AboutDialog"
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"
xmlns:local="clr-namespace:Planter"
mc:Ignorable="d"
Title="关于" Height="380" Width="400" WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel>
<Label FontWeight="Bold" FontSize="28" HorizontalAlignment="Center">点选播种机</Label>
<Label FontSize="16" HorizontalAlignment="Center" Name="version"/>
<Label HorizontalAlignment="Center">Copyright© 2019 by Sanhei</Label>
<Label Margin="10,0,10,0" FontSize="16" FontWeight="Bold">信息:</Label>
<StackPanel Orientation="Horizontal" Margin="10,0,10,0">
<Label>作者邮箱:</Label>
<Label>
<Hyperlink NavigateUri="mailto:[email protected]" Click="Hyperlink_Click">[email protected]</Hyperlink>
</Label>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="10,0,10,0">
<Label>开源地址:</Label>
<Label>
<Hyperlink NavigateUri="https://github.com/Sanheiii/UTAUPlanter" Click="Hyperlink_Click">https://github.com/Sanheiii/UTAUPlanter</Hyperlink>
</Label>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="10,0,10,0">
<Label>许可证:</Label>
<Label>
<Hyperlink NavigateUri="https://github.com/Sanheiii/UTAUPlanter/blob/master/LICENSE" Click="Hyperlink_Click">MIT LICENSE</Hyperlink>
</Label>
</StackPanel>
<Label Margin="10,0,10,0" FontSize="16" FontWeight="Bold">引用:</Label>
<StackPanel Orientation="Horizontal" Margin="10,0,10,0">
<Label>utauPlugin:</Label>
<Label>
<Hyperlink NavigateUri="https://github.com/delta-kimigatame/utauPlugin" Click="Hyperlink_Click">https://github.com/delta-kimigatame/utauPlugin</Hyperlink>
</Label>
</StackPanel>
<Label Margin="10,0,10,0" FontSize="16" FontWeight="Bold">鸣谢:</Label>
<StackPanel Orientation="Horizontal" Margin="10,0,10,0">
<Label>腾龙工作室:</Label>
<Label>
<Hyperlink NavigateUri="https://www.tenlonstudio.com/" Click="Hyperlink_Click">https://www.tenlonstudio.com</Hyperlink>
</Label>
</StackPanel>
</StackPanel>
</Grid>
</Window>