summaryrefslogtreecommitdiff
path: root/windows/WinUI/AboutView.xaml
blob: 3e83c2e2c2b71abe79fc0e1b255037f9d6a8d533 (plain)
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
<Window x:Class="WinUI.AboutView"
        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:WinUI"
        mc:Ignorable="d"
        Title="AboutView" Height="368.267" Width="300" Icon="ZeroTierIcon.ico">
	<Grid>
		<Image x:Name="image" HorizontalAlignment="Center" Height="100" Margin="0,10,0,0" VerticalAlignment="Top" Width="100" Source="ZeroTierIcon.ico"/>
		<RichTextBox x:Name="richTextBox" HorizontalAlignment="Left" Height="209" Margin="10,123,0,0" VerticalAlignment="Top" Width="275" IsReadOnly="True" IsDocumentEnabled="True" BorderThickness="0" FontSize="18" RenderTransformOrigin="0.506,0.63">
			<RichTextBox.Resources>
				<Style TargetType="Hyperlink">
					<Setter Property="Cursor" Value="Hand" />
				</Style>
			</RichTextBox.Resources>
            <FlowDocument>
                <Paragraph TextAlignment="Center">
                    <Run Text="ZeroTier One"/>
                </Paragraph>
                <Paragraph TextAlignment="Center">
                    <Run FontSize="14" Text="Version 1.2.8"/>
                    <LineBreak/>
                    <Run FontSize="14" Text="(c) 2011-2017 ZeroTier, Inc."/>
                    <LineBreak/>
                    <Run FontSize="14" Text="www.zerotier.com"/>
                </Paragraph>
                <Paragraph TextAlignment="Center">
                    <Run FontSize="14" Text="ZeroTier One allows your computer to join virtual networks. Just select &quot;join&quot; and enter a network's 16-digit ID. Each network appears on your computer as a new network port."/>
                </Paragraph>
            </FlowDocument>
        </RichTextBox>

	</Grid>
</Window>