AboutView.xaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  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="368.267" 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="209" Margin="10,123,0,0" VerticalAlignment="Top" Width="275" IsReadOnly="True" IsDocumentEnabled="True" BorderThickness="0" FontSize="18" RenderTransformOrigin="0.506,0.63">
  12. <RichTextBox.Resources>
  13. <Style TargetType="Hyperlink">
  14. <Setter Property="Cursor" Value="Hand" />
  15. </Style>
  16. </RichTextBox.Resources>
  17. <FlowDocument>
  18. <Paragraph TextAlignment="Center">
  19. <Run Text="ZeroTier One"/>
  20. </Paragraph>
  21. <Paragraph TextAlignment="Center">
  22. <Run FontSize="14" Text="Version 1.4.4"/>
  23. <LineBreak/>
  24. <Run FontSize="14" Text="(c) 2011-2019 ZeroTier, Inc."/>
  25. <LineBreak/>
  26. <Run FontSize="14" Text="www.zerotier.com"/>
  27. </Paragraph>
  28. <Paragraph TextAlignment="Center">
  29. <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."/>
  30. </Paragraph>
  31. </FlowDocument>
  32. </RichTextBox>
  33. </Grid>
  34. </Window>