AboutView.xaml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <Window x:Class="WinUI.AboutView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WinUI"
  7. mc:Ignorable="d"
  8. Title="AboutView" Height="460" Width="300" Icon="ZeroTierIcon.ico">
  9. <Grid>
  10. <Image x:Name="image" HorizontalAlignment="Center" Height="100" Margin="0,10,0,0" VerticalAlignment="Top" Width="100" Source="ZeroTierIcon.ico"/>
  11. <RichTextBox x:Name="richTextBox" HorizontalAlignment="Left" Height="307" Margin="10,115,0,0" VerticalAlignment="Top" Width="275" IsReadOnly="True" IsDocumentEnabled="True" BorderThickness="0">
  12. <RichTextBox.Resources>
  13. <Style TargetType="Hyperlink">
  14. <Setter Property="Cursor" Value="Hand" />
  15. </Style>
  16. </RichTextBox.Resources>
  17. <FlowDocument>
  18. <Paragraph>
  19. <Span FontWeight="Bold" FontSize="18" FontFamily="HelveticaNeue">
  20. <Run Text="Getting Started"/>
  21. </Span>
  22. <Span FontWeight="Bold" FontSize="12" FontFamily="HelveticaNeue">
  23. <LineBreak/>
  24. </Span>
  25. <Span FontSize="12" FontFamily="HelveticaNeue">
  26. <Run/>
  27. </Span>
  28. </Paragraph>
  29. <Paragraph>
  30. <Span FontSize="12" FontFamily="HelveticaNeue">
  31. <Run Text="Getting started is simple. Simply click "/>
  32. </Span>
  33. <Span FontSize="12" FontFamily="Menlo-Regular">
  34. <Run Text="Join Network"/>
  35. </Span>
  36. <Span FontSize="12" FontFamily="HelveticaNeue">
  37. <Run Text=" from the ZeroTier status bar menu. To join the public network &quot;Earth&quot;, enter "/>
  38. </Span>
  39. <Span FontSize="12" FontFamily="Menlo-Regular">
  40. <Run Text="8056c2e21c000001"/>
  41. </Span>
  42. <Span FontSize="12" FontFamily="HelveticaNeue">
  43. <Run Text=" and click the Join button. Once connected, you'll be able to navigate to "/>
  44. </Span>
  45. <Hyperlink NavigateUri="http://earth.zerotier.net/" RequestNavigate="Hyperlink_MouseLeftButtonDown">
  46. <Span Foreground="#FF0000E9" FontSize="12" FontFamily="HelveticaNeue">
  47. <Run Text="earth.zerotier.net"/>
  48. </Span>
  49. </Hyperlink>
  50. <Span FontSize="12" FontFamily="HelveticaNeue">
  51. <Run Text="."/>
  52. </Span>
  53. </Paragraph>
  54. <Paragraph>
  55. <Span FontSize="12" FontFamily="HelveticaNeue">
  56. <Run/>
  57. <LineBreak/>
  58. </Span>
  59. <Span FontWeight="Bold" FontSize="18" FontFamily="HelveticaNeue">
  60. <Run Text="Create a Network"/>
  61. </Span>
  62. <Span FontWeight="Bold" FontSize="12" FontFamily="HelveticaNeue">
  63. <LineBreak/>
  64. </Span>
  65. <Span FontSize="12" FontFamily="HelveticaNeue">
  66. <Run/>
  67. </Span>
  68. </Paragraph>
  69. <Paragraph>
  70. <Span FontSize="12" FontFamily="HelveticaNeue">
  71. <Run Text="Visit "/>
  72. </Span>
  73. <Hyperlink NavigateUri="http://my.zerotier.com/" RequestNavigate="Hyperlink_MouseLeftButtonDown">
  74. <Span Foreground="#FF0000E9" FontSize="12" FontFamily="HelveticaNeue">
  75. <Run Text="my.zerotier.com"/>
  76. </Span>
  77. </Hyperlink>
  78. <Span FontSize="12" FontFamily="HelveticaNeue">
  79. <Run Text=" to create and manage your own virtual networks."/>
  80. </Span>
  81. <Span FontSize="12" FontFamily="HelveticaNeue">
  82. <LineBreak/>
  83. <Run/>
  84. </Span>
  85. </Paragraph>
  86. <Paragraph>
  87. <Span FontSize="12" FontFamily="HelveticaNeue">
  88. <Run Text="For more information, visit "/>
  89. </Span>
  90. <Hyperlink NavigateUri="http://www.zerotier.com/" RequestNavigate="Hyperlink_MouseLeftButtonDown">
  91. <Span Foreground="#FF0000E9" FontSize="12" FontFamily="HelveticaNeue">
  92. <Run Text="zerotier.com"/>
  93. </Span>
  94. </Hyperlink>
  95. <Span FontSize="12" FontFamily="HelveticaNeue">
  96. <Run Text="."/>
  97. </Span>
  98. </Paragraph>
  99. </FlowDocument>
  100. </RichTextBox>
  101. </Grid>
  102. </Window>