Font size and family for tile name

A simple question, but I did not find the answer. What is the name and font size used for the title of the fragment (for example, the title "Internet Explorer" on this fragment)?

Does anyone know this?

+4
source share
1 answer

I believe that FontFamily is PhoneFontFamilySemiBold , and FontSize is PhoneFontSizeNormal .

Below is a snippet of code from the HubTile , where you can pretty much find all the information about tile style. :)

 <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"/> 
+7
source

Source: https://habr.com/ru/post/1385322/


All Articles