使用Windows Phone Runtime 8.1应用程序中的代码访问另一主题的主题资源

时间:2014-10-07 13:56:02

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

我知道Windows Phone Runtime 8.1有几个ThemeDictionaries用于不同的主题,如Windows Runtime 8。

但似乎我只能使用Application.RequestedTheme等代码访问当前使用主题的主题资源(可能取决于Application.Current.Resources["PhoneAccentBrush"]?)。

我可以覆盖Default中的App.xaml主题以覆盖所有主题的颜色,但我可以通过代码实现吗?

1 个答案:

答案 0 :(得分:0)

Application.Resources中的主题资源取决于Application.RequestedTheme

FrameworkElement.Resources取决于FrameworkElement.RequestedTheme

因此,覆盖来自(Window.Current.Content as FrameworkElement).Resources的资源将使用主题资源覆盖当前资源(如果没有子元素覆盖其RequestedTheme)。