83d84330d6
Channel page and video card
25 lines
1.0 KiB
XML
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>
|