磁贴标题的字体大小和系列

发布于 2024-12-20 02:30:14 字数 88 浏览 0 评论 0原文

简单的问题,但我还没有找到答案。用于磁贴标题的字体名称和大小是什么(例如该磁贴上的标题“Internet Explorer”)?

有人知道这个吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄荷梦 2024-12-27 02:30:14

我相信 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"/>

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"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文