6a12c7809d
Related Work Items: #251, #252, #261
43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<Page
|
|
x:Class="FoxTube.Pages.Downloads"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid Margin="10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock Name="path" IsTextSelectionEnabled="True" TextWrapping="WrapWholeWords"/>
|
|
<Button Grid.Column="1" x:Uid="/Downloads/openFolder" Content="Open folder" Name="open" Click="Open_Click" VerticalAlignment="Center"/>
|
|
</Grid>
|
|
|
|
|
|
<TextBlock x:Uid="/Downloads/noItems" Grid.Row="1" Name="empty" HorizontalAlignment="Center" VerticalAlignment="Top" FontSize="28" Text="You haven't downloaded anything yet" Margin="10" TextWrapping="WrapWholeWords" Foreground="Gray" FontWeight="SemiBold"/>
|
|
|
|
<ScrollViewer Grid.Row="1">
|
|
<StackPanel Name="list">
|
|
<StackPanel.ChildrenTransitions>
|
|
<TransitionCollection>
|
|
<EntranceThemeTransition IsStaggeringEnabled="True"/>
|
|
</TransitionCollection>
|
|
</StackPanel.ChildrenTransitions>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
|
|
<CommandBar Grid.Row="2">
|
|
<AppBarButton x:Uid="/Downloads/refresh" Label="Refresh" Icon="Refresh" Click="Refresh"/>
|
|
</CommandBar>
|
|
</Grid>
|
|
</Page>
|