Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube/Home.xaml
T
Michael Gordeev 83d84330d6 Added Google libraries
Channel page and video card
2018-04-16 22:13:35 +03:00

25 lines
1.0 KiB
XML

<Page
x:Class="FoxTube.Home"
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}">
<Grid.RowDefinitions>
<RowDefinition Height="47"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid Grid.Row="0" Background="Red">
<StackPanel Orientation="Horizontal">
<HyperlinkButton Content="Recommended" Foreground="White" Margin="10,8,10,10"/>
<HyperlinkButton Content="Trending" Foreground="White" Margin="10,8,10,10"/>
<HyperlinkButton Content="Subscriptions" Foreground="White" Margin="10,8,10,10"/>
</StackPanel>
</Grid>
<Frame Grid.Row="1" Name="content"/>
</Grid>
</Page>