BottomBarItem.xaml (1070B)
1 <Button 2 x:Class="File360.BottomBarItem" 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 HorizontalAlignment="Right" 10 BorderBrush="{x:Null}" 11 RequestedTheme="Dark" 12 BorderThickness="1" FontWeight="Thin"> 13 <StackPanel MinWidth="35" Grid.Column="1"> 14 <TextBlock x:Name="imageText" FontSize="20" Text="c" FontFamily="Assets/Font/iconFont.ttf#iconfont" HorizontalAlignment="Center" VerticalAlignment="Bottom" Foreground="{ThemeResource PhoneForegroundBrush}" /> 15 <TextBlock x:Name="contentText" Text="copy" Grid.Row="1" FontFamily="Assets/Font/Custom/Raleway-Light.ttf#Raleway" HorizontalAlignment="Center" VerticalAlignment="Top" FontSize="12" Foreground="{ThemeResource PhoneForegroundBrush}" FontWeight="Normal" /> 16 </StackPanel> 17 </Button>