MmdbPage.xaml 1.4 KB

123456789101112131415161718192021222324252627282930
  1. <Page
  2. x:Class="Maple_App.MmdbPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:Maple_App"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d">
  9. <StackPanel Orientation="Vertical" Padding="16, 16, 0, 0">
  10. <TextBlock TextWrapping="Wrap">
  11. <Run>Use</Run>
  12. <Run FontFamily="Consolas">GEOIP</Run>
  13. <Run>or</Run>
  14. <Run FontFamily="Consolas">EXTERNAL</Run>
  15. <Run>directives in a configuration file to make use of a</Run>
  16. <Run FontFamily="Consolas">geo.mmdb</Run>
  17. <Run>database. For more information, see</Run>
  18. <Hyperlink NavigateUri="https://github.com/eycorsican/leaf/blob/master/README.zh.md">
  19. https://github.com/eycorsican/leaf/blob/master/README.zh.md
  20. </Hyperlink>
  21. <Run>.</Run>
  22. </TextBlock>
  23. <TextBlock Margin="0, 8, 0, 0" TextWrapping="Wrap">
  24. <Run>This product includes GeoLite2 data created by MaxMind, available from</Run>
  25. <Hyperlink NavigateUri="https://www.maxmind.com">https://www.maxmind.com</Hyperlink>
  26. <Run>.</Run>
  27. </TextBlock>
  28. </StackPanel>
  29. </Page>