file360

Log | Files | Refs

SideBarMenuButton.xaml (1262B)


      1 <Button
      2     x:Class="File360.SideBarMenuButton"
      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="Left" FontWeight="Thin" BorderBrush="{x:Null}">
     10 
     11     <StackPanel Orientation="Horizontal" x:Name="LayoutGrid" Margin="0,5">
     12         <TextBlock x:Name="TextImage" 
     13                        VerticalAlignment="Center" 
     14                        FontFamily="Assets/Font/iconFont.ttf#iconfont" 
     15                        FontSize="25" 
     16                        Text="t" 
     17                        TextAlignment="Left" Foreground="{ThemeResource PhoneForegroundBrush}"/>
     18         <TextBlock x:Name="Text" 
     19                        TextWrapping="NoWrap" 
     20                        FontFamily="Assets/Font/Custom/Raleway-Light.ttf#Raleway" 
     21                        FontSize="18" 
     22                        TextAlignment="Left"
     23                        Text="sd som" VerticalAlignment="Center" Foreground="{ThemeResource PhoneForegroundBrush}" Margin="5,0,0,0"/>
     24     </StackPanel>
     25 </Button>