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?

4

1 回答 1

7

我相信FontFamilyPhoneFontFamilySemiBoldFontSizePhoneFontSizeNormal

下面的代码片段来自工具包的 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"/>
于 2011-12-08T11:10:27.447 回答