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?
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?
我相信FontFamily
是PhoneFontFamilySemiBold
和FontSize
是PhoneFontSizeNormal
。
下面的代码片段来自工具包的 HubTile
控件,您几乎可以在其中找到有关磁贴样式的所有信息。:)
<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"/>