ContentControlThemeFontFamily

ContentControlThemeFontFamily

本文介绍了如何重写ContentControlThemeFontFamily的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在WinRt应用程序中以standardstyles.xaml为ContentControlThemeFontFamily设置自定义字体?

is it possible to set a custom font for ContentControlThemeFontFamily in WinRt Applications in the standardstyles.xaml?

你有什么例子吗?

推荐答案

创建您自己的资源字典并覆盖主题.

Create a resource dictionary of your own and override the themes.

<ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary x:Key="Default">
         <FontFamily x:Key="ContentControlThemeFontFamily">Times new roman</FontFamily>
     </ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>

这篇关于如何重写ContentControlThemeFontFamily的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 07:14