Browse Source

fill out the about view

Grant Limberg 8 years ago
parent
commit
0142c0d339
1 changed files with 101 additions and 2 deletions
  1. 101 2
      windows/WinUI/AboutView.xaml

+ 101 - 2
windows/WinUI/AboutView.xaml

@@ -5,8 +5,107 @@
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
         xmlns:local="clr-namespace:WinUI"
         xmlns:local="clr-namespace:WinUI"
         mc:Ignorable="d"
         mc:Ignorable="d"
-        Title="AboutView" Height="300" Width="300" Icon="ZeroTierIcon.ico">
+        Title="AboutView" Height="460" Width="300" Icon="ZeroTierIcon.ico">
     <Grid>
     <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>
     </Grid>
 </Window>
 </Window>