summaryrefslogtreecommitdiff
path: root/windows/WinUI
diff options
context:
space:
mode:
authorGrant Limberg <grant.limberg@zerotier.com>2016-11-21 13:25:10 -0800
committerGrant Limberg <grant.limberg@zerotier.com>2016-11-21 13:25:10 -0800
commit0142c0d339bc86c01e9e14ea6ed27881d5007f3f (patch)
tree3bd51fdf714f2c9743ae3ff1dca3a0555ba1f3fa /windows/WinUI
parent1be55d61820344f08f06e2ba79cee2d876601267 (diff)
downloadinfinitytier-0142c0d339bc86c01e9e14ea6ed27881d5007f3f.tar.gz
infinitytier-0142c0d339bc86c01e9e14ea6ed27881d5007f3f.zip
fill out the about view
Diffstat (limited to 'windows/WinUI')
-rw-r--r--windows/WinUI/AboutView.xaml103
1 files changed, 101 insertions, 2 deletions
diff --git a/windows/WinUI/AboutView.xaml b/windows/WinUI/AboutView.xaml
index 770b86e3..c11593c1 100644
--- a/windows/WinUI/AboutView.xaml
+++ b/windows/WinUI/AboutView.xaml
@@ -5,8 +5,107 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WinUI"
mc:Ignorable="d"
- Title="AboutView" Height="300" Width="300" Icon="ZeroTierIcon.ico">
+ Title="AboutView" Height="460" 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="307" Margin="10,115,0,0" VerticalAlignment="Top" Width="275">
+ <FlowDocument>
+ <Paragraph>
+ <Span FontWeight="Bold" FontSize="18" FontFamily="HelveticaNeue">
+ <Run Text="Getting Started"/>
+ </Span>
+ <Run Text=" "/>
+ <Span FontWeight="Bold" FontSize="12" FontFamily="HelveticaNeue">
+ <LineBreak/>
+ </Span>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run/>
+ </Span>
+ </Paragraph>
+ <Paragraph>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text="Getting started is simple. Simply click "/>
+ </Span>
+ <Run Text=" "/>
+ <Span FontSize="12" FontFamily="Menlo-Regular">
+ <Run Text="Join Network"/>
+ </Span>
+ <Run Text=" "/>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text=" from the ZeroTier status bar menu. To join the public network &quot;Earth&quot;, enter "/>
+ </Span>
+ <Run Text=" "/>
+ <Span FontSize="12" FontFamily="Menlo-Regular">
+ <Run Text="8056c2e21c000001"/>
+ </Span>
+ <Run Text=" "/>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text=" and click the Join button. Once connected, you'll be able to navigate to "/>
+ </Span>
+ <Run Text=" "/>
+ <Hyperlink NavigateUri="http://earth.zerotier.net/">
+ <Span Foreground="#FF0000E9" FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text="earth.zerotier.net"/>
+ </Span>
+ </Hyperlink>
+ <Run Text=" "/>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text="."/>
+ </Span>
+ </Paragraph>
+ <Paragraph>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run/>
+ <LineBreak/>
+ </Span>
+ <Span FontWeight="Bold" FontSize="18" FontFamily="HelveticaNeue">
+ <Run Text="Create a Network"/>
+ </Span>
+ <Run Text=" "/>
+ <Span FontWeight="Bold" FontSize="12" FontFamily="HelveticaNeue">
+ <LineBreak/>
+ </Span>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run/>
+ </Span>
+ </Paragraph>
+ <Paragraph>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text="Visit "/>
+ </Span>
+ <Run Text=" "/>
+ <Hyperlink NavigateUri="http://my.zerotier.com/">
+ <Span Foreground="#FF0000E9" FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text="my.zerotier.com"/>
+ </Span>
+ </Hyperlink>
+ <Run Text=" "/>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text=" to create and manage your own virtual networks."/>
+ </Span>
+ <Run Text=" "/>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <LineBreak/>
+ <Run/>
+ </Span>
+ </Paragraph>
+ <Paragraph>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text="For more information, visit "/>
+ </Span>
+ <Run Text=" "/>
+ <Hyperlink NavigateUri="http://www.zerotier.com/">
+ <Span Foreground="#FF0000E9" FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text="zerotier.com"/>
+ </Span>
+ </Hyperlink>
+ <Run Text=" "/>
+ <Span FontSize="12" FontFamily="HelveticaNeue">
+ <Run Text="."/>
+ </Span>
+ </Paragraph>
+ </FlowDocument>
+ </RichTextBox>
+
</Grid>
</Window>