|
| 1 | +<Page x:Class="CheckIP.About" |
| 2 | + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 3 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 4 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 5 | + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 6 | + xmlns:local="clr-namespace:CheckIP" |
| 7 | + mc:Ignorable="d" |
| 8 | + d:DesignWidth="436" d:DesignHeight="400" |
| 9 | + Title="About"> |
| 10 | + |
| 11 | + <Grid> |
| 12 | + <Label x:Name="labelTitle" Content="CheckIP" HorizontalAlignment="Left" Margin="15,8,0,0" VerticalAlignment="Top" FontSize="20" Foreground="{DynamicResource SystemBaseHighColorBrush}"/> |
| 13 | + <Label x:Name="valueVersion" Content="Version: 1.0.0" Margin="15,40,0,0" Foreground="{DynamicResource SystemBaseMediumColorBrush}" Height="19" VerticalAlignment="Top" HorizontalAlignment="Left"/> |
| 14 | + <Label x:Name="valueCopyright" Content="Copyright © 2018 - 2021 Exploitox. All rights reserved." Margin="15,59,0,0" Foreground="{DynamicResource SystemBaseMediumColorBrush}" Height="19" VerticalAlignment="Top" HorizontalAlignment="Left"/> |
| 15 | + <TextBlock x:Name="licenseText" Margin="15,92,10,0" Height="268" VerticalAlignment="Top" Foreground="{DynamicResource SystemBaseHighColorBrush}" FontSize="14" AllowDrop="True" TextWrapping="WrapWithOverflow"> |
| 16 | + This program is free software: you can redistribute it and/or modify |
| 17 | + it under the terms of the GNU General Public License as published by |
| 18 | + the Free Software Foundation, either version 3 of the License, or |
| 19 | + (at your option) any later version.<LineBreak/><LineBreak/> |
| 20 | + |
| 21 | + Source Code: |
| 22 | + <Hyperlink TextDecorations="" Click="Hyperlink_RequestNavigateToGithub"> |
| 23 | + GitHub |
| 24 | + </Hyperlink> |
| 25 | + <LineBreak/> |
| 26 | + Homepage: |
| 27 | + <Hyperlink TextDecorations="" Click="Hyperlink_RequestNavigateToHomepage"> |
| 28 | + Exploitox |
| 29 | + </Hyperlink> |
| 30 | + <LineBreak/> |
| 31 | + License: |
| 32 | + <Hyperlink TextDecorations="" Click="Hyperlink_RequestNavigateToLicense"> |
| 33 | + GNU General Public License |
| 34 | + </Hyperlink> |
| 35 | + </TextBlock> |
| 36 | + </Grid> |
| 37 | +</Page> |
0 commit comments