63 lines
4.1 KiB
XML
63 lines
4.1 KiB
XML
<Page
|
|
x:Class="FoxTube.About"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:FoxTube"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
<StackPanel Orientation="Vertical" Margin="10">
|
|
<TextBlock Text="About us and this app" FontSize="28"/>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="128"/>
|
|
</Grid.ColumnDefinitions>
|
|
<StackPanel Grid.Column="0">
|
|
<TextBlock Text="FoxTube" FontSize="24"/>
|
|
<TextBlock Name="version" Text="[currentVersion]" FontSize="14" Foreground="Gray" Margin="0,-5,0,10"/>
|
|
<TextBlock Text="Developed by Michael Gordeev (also known as XFox)" Margin="0,0,0,10"/>
|
|
<TextBlock Visibility="Collapsed" Text="Special thanks to contributors for motivating me, testers and translators for making this app better everyday and you for using this app;)" Margin="0,0,0,10"/>
|
|
<TextBlock Text="Contacts" FontSize="22" FontWeight="SemiBold"/>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="Twitter:" Margin="0,0,5,0"/>
|
|
<HyperlinkButton Content="@XFox_Mike" Padding="0" NavigateUri="https://twitter.com/XFox_Mike"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" Visibility="Collapsed">
|
|
<TextBlock Text="Facebook:" Margin="0,0,5,0"/>
|
|
<HyperlinkButton Content="@XFox.Mike" Padding="0"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="VKontakte:" Margin="0,0,5,0"/>
|
|
<HyperlinkButton Content="@XFox.Mike" Padding="0" NavigateUri="https://vk.com/XFox.Mike"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="YouTube:" Margin="0,0,5,0"/>
|
|
<HyperlinkButton Content="@FoxGameStudioChannel" Padding="0" NavigateUri="https://youtube.com/c/FoxGameStudioChannel"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="E-mail:" Margin="0,0,5,0"/>
|
|
<HyperlinkButton Content="foxgameofficial@gmail.com" Padding="0" NavigateUri="mailto:foxgameofficial+foxtube@gmail.com"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="Official website (Russian language only):" Margin="0,0,5,0"/>
|
|
<HyperlinkButton Content="http://foxgame.hol.es/" Padding="0" NavigateUri="http://foxgame.hol.es/"/>
|
|
</StackPanel>
|
|
<TextBlock/>
|
|
<TextBlock Text="Legal stuff" FontSize="22" FontWeight="SemiBold"/>
|
|
<HyperlinkButton Content="Our Privacy Policy" NavigateUri="http://foxgame.hol.es/foxtubepp.txt" Padding="0,5,0,0"/>
|
|
<HyperlinkButton Content="Privacy Policy" NavigateUri="https://youtube.com/t/privacy" Padding="0"/>
|
|
<HyperlinkButton Content="Terms of use" NavigateUri="https://youtube.com/t/terms" Padding="0"/>
|
|
<HyperlinkButton Content="Community Guidelines" NavigateUri="https://youtube.com/t/community_guidelines" Padding="0,0,0,10"/>
|
|
<TextBlock Text="© 2018 Michael Gordeev"/>
|
|
<TextBlock Text="© 2018 YouTube, LLC"/>
|
|
<Image Source="Assets/FoxGame.png" Width="300" HorizontalAlignment="Left" Visibility="Collapsed"/>
|
|
</StackPanel>
|
|
<Image Grid.Column="1" Source="Assets/LogoAvatar.png" VerticalAlignment="Top"/>
|
|
</Grid>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Page>
|