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/VideoGrid.xaml
T
Michael Gordeev 83d84330d6 Added Google libraries
Channel page and video card
2018-04-16 22:13:35 +03:00

20 lines
748 B
XML

<Page
x:Class="FoxTube.VideoGrid"
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.ColumnDefinitions>
<ColumnDefinition Width="384"/>
<ColumnDefinition Width="384"/>
<ColumnDefinition Width="384"/>
<ColumnDefinition Width="384"/>
<ColumnDefinition Width="384"/>
</Grid.ColumnDefinitions>
</Grid>
</Page>