1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Button
x:Class="File360.SideBarMenuButton"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:File360"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
HorizontalContentAlignment="Left" FontWeight="Thin" BorderBrush="{x:Null}">
<StackPanel Orientation="Horizontal" x:Name="LayoutGrid" Margin="0,5">
<TextBlock x:Name="TextImage"
VerticalAlignment="Center"
FontFamily="Assets/Font/iconFont.ttf#iconfont"
FontSize="25"
Text="t"
TextAlignment="Left" Foreground="{ThemeResource PhoneForegroundBrush}"/>
<TextBlock x:Name="Text"
TextWrapping="NoWrap"
FontFamily="Assets/Font/Custom/Raleway-Light.ttf#Raleway"
FontSize="18"
TextAlignment="Left"
Text="sd som" VerticalAlignment="Center" Foreground="{ThemeResource PhoneForegroundBrush}" Margin="5,0,0,0"/>
</StackPanel>
</Button>