-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAboutWindow.xaml
80 lines (79 loc) · 3.57 KB
/
AboutWindow.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Window x:Class="FcomGui.AboutWindow"
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:FcomGui"
mc:Ignorable="d"
Title="About FCOM" Height="470" Width="360"
WindowStyle="ToolWindow">
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock FontSize="10"/>
<TextBlock FontSize="15" FontWeight="Bold">FCOM</TextBlock>
<TextBlock FontSize="12" FontStyle="Italic">
The Discord message forwarder for online flightsim networks <LineBreak/>
</TextBlock>
<TextBlock>
GUI build 20190329 <LineBreak/>
Client version
<TextBlock Text="{StaticResource client_version}"/>
</TextBlock>
<TextBlock></TextBlock>
<TextBlock>
Copyright ©2019 <Hyperlink NavigateUri="https://github.com/norrisng/" RequestNavigate="Hyperlink_RequestNavigate">Norris Ng</Hyperlink><LineBreak/>
Licensed under the GNU General Public License, version 3.0<LineBreak/><LineBreak/>
<Bold>Third-party libraries</Bold><LineBreak/>
<Span FontSize="10">
<Hyperlink NavigateUri="https://github.com/chmorgan/sharppcap" RequestNavigate="Hyperlink_RequestNavigate">SharpPcap</Hyperlink> by Chris Morgan <LineBreak/>
<Hyperlink NavigateUri="http://restsharp.org/" RequestNavigate="Hyperlink_RequestNavigate">RestSharp</Hyperlink> by RestSharp contributors
</Span>
</TextBlock>
<TextBlock></TextBlock>
<TextBlock>
<Bold>Early testers</Bold><LineBreak/>
<Span FontSize="10">
Britannia, Grant, Mark Doyle (Pritt) <LineBreak/>
</Span>
</TextBlock>
<TextBlock>
<Bold>Logo</Bold><LineBreak/>
<Span FontSize="10">
Britannia <LineBreak/>
</Span>
</TextBlock>
<TextBlock>
<Bold>Closed beta testers</Bold><LineBreak/>
<Span FontSize="10">
<Grid HorizontalAlignment="Center">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0">
Agera <LineBreak/>
AidasP <LineBreak/>
Avalanche <LineBreak/>
Barbate Brandon <LineBreak/>
Elias <LineBreak/>
flightcode <LineBreak/>
Ka Hei Zheng <LineBreak/>
</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" Padding="30"/>
<TextBlock Grid.Row="0" Grid.Column="2">
Pronoun <LineBreak/>
Sterling P. (bantha121) <LineBreak/>
Tafia <LineBreak/>
Tivec <LineBreak/>
triplesevenbob <LineBreak/>
Vikaas <LineBreak/>
Zack <LineBreak/>
</TextBlock>
</Grid>
</Span>
</TextBlock>
</StackPanel>
</Window>