Windows Phone的主题资源

时间:2014-09-29 12:37:25

标签: c# xaml windows-phone windows-phone-8.1

我现在正在阅读有关Windows Phone上可用的theme resources并试图在我的项目中使用一些内容。但是,似乎只有部分内容有效,例如:

Error   2   The resource "PhoneFontSizeExtraLarge" could not be resolved.   

为什么会这样?是否有更新的主题资源库?


编辑:根据请求 - 使用情况

<Style TargetType="Button" x:Key="BaseButton">
    <!-- ... -->
    <Setter Property="FontSize" Value="{StaticResource PhoneFontSizeExtraLarge}" />

2 个答案:

答案 0 :(得分:2)

您尝试使用的资源仅适用于Windows Phone Silverlight(7.1,8和8.1)。

您可能正在制作WinRT应用,在这种情况下,该资源未预定义。

您可以在程序文件(x86)\ Windows Phone Kits \ 8.1 \ Include \ abi \ Xaml \ Design \ generic.xaml

中找到大量资源定义

答案 1 :(得分:1)

我们在8.0或Silverlight构建中使用的一些静态资源在8.1 RT仅构建中是不同的。这适用于你吗?