DownloadIndicator.xaml (1608B)
1 <Button 2 x:Class="File360.DownloadIndicator" 3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 5 xmlns:local="using:File360" 6 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 7 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 8 mc:Ignorable="d" 9 HorizontalContentAlignment="Stretch"> 10 <Button.Background> 11 <SolidColorBrush Color="{ThemeResource PhoneChromeColor}"/> 12 </Button.Background> 13 14 <Grid Margin="0,7"> 15 <Grid.RowDefinitions> 16 <RowDefinition Height="Auto"/> 17 <RowDefinition Height="Auto"/> 18 <RowDefinition Height="Auto"/> 19 </Grid.RowDefinitions> 20 <TextBlock x:Name="FileName" Text="Vedhalam_avi.Xvid.Rip.mp4" FontSize="14.667" FontFamily="Assets/Font/Custom/Raleway-Light.ttf#Raleway" Margin="3,2,3,10" Foreground="White" HorizontalAlignment="Left"/> 21 <Grid Grid.Row="1"> 22 <TextBlock Text="3mb" Foreground="{ThemeResource PhoneAccentBrush}" FontSize="10.667" Margin="3,0,0,0"/> 23 <TextBlock HorizontalAlignment="Right" Foreground="{ThemeResource PhoneAccentBrush}" FontFamily="Assets/Font/Custom/ClearSans-Thin.ttf#Clear Sans Thin" FontSize="10.667" VerticalAlignment="Center" Margin="0,0,3,0" TextLineBounds="TrimToBaseline" > 24 <Run Text="25.3"/> 25 <Run Text="kbps"/> 26 </TextBlock> 27 </Grid> 28 <ProgressBar x:Name="progBar" Value="75" Grid.Row="2" VerticalAlignment="Bottom" Margin="3,10,3,0"/> 29 </Grid> 30 </Button>