4

Simple question but I havent found the answer. What is the font name and size that is used for the tile's title (like the title "Internet Explorer" on that tile)?

Does anyone know this?

John
  • 681
  • 1
  • 8
  • 20

1 Answers1

7

I believe FontFamily is PhoneFontFamilySemiBold and FontSize is PhoneFontSizeNormal.

The code snippet below is from the toolkit's HubTile control where you can pretty much find all the information about the style of the tile. :)

<TextBlock x:Name="BackTitleBlock" Grid.Row="1" 
                                    VerticalAlignment="Bottom" 
                                    Margin="10,0,0,6"
                                    FontFamily="{StaticResource PhoneFontFamilySemiBold}"
                                    FontSize="{StaticResource PhoneFontSizeNormal}"
                                    Foreground="{TemplateBinding Foreground}"
                                    TextWrapping="NoWrap"/>
Justin XL
  • 38,763
  • 7
  • 88
  • 133
  • Just an update, the latest version of the silverlight toolkit can be found [here](http://phone.codeplex.com/). – Sopuli May 15 '13 at 15:58