29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<Page
|
|
NavigationCacheMode="Enabled"
|
|
x:Class="FoxTube.Pages.History"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:FoxTube.Pages"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:controls="using:FoxTube.Controls"
|
|
xmlns:foxtube="using:FoxTube"
|
|
mc:Ignorable="d"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<Grid Name="grid">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
<ScrollViewer Name="scroll">
|
|
<local:VideoGrid/>
|
|
</ScrollViewer>
|
|
<CommandBar Grid.Row="1" DefaultLabelPosition="Right">
|
|
<AppBarButton Icon="Refresh" Label="Refresh" Name="refresh" Click="Refresh_Click"/>
|
|
<AppBarButton Label="Open in browser" Icon="Globe" Name="toBrowser" Click="toBrowser_Click"/>
|
|
</CommandBar>
|
|
<foxtube:LoadingPage Visibility="Collapsed" Grid.RowSpan="2"/>
|
|
</Grid>
|
|
</Page>
|