在
MSDN,您将找到示例代码,您可以使用它们来确定当前主题 – 通过比较资源.例如:
原文链接:https://www.f2er.com/windows/363318.htmlprivate bool IsDarkTheme() { return (double)Application.Current.Resources["PhoneDarkThemeOpacity"] > 0; }
但是 – 我在WP8.1运行时遇到了运行上述行的一些问题 – 它无法找到所请求的密钥.事实证明 – 上面的代码将工作only on WP8.1 Silverlight (also WP8.0).
但是(再次),没有任何东西在你的路上to define your own ThemeResource并检查它的状态:
在app.xaml中 – 定义一些ThemeResources:
<Application.Resources> <ResourceDictionary> <ResourceDictionary.ThemeDictionaries> <ResourceDictionary x:Key="Light"> <x:Boolean x:Key="IsDarkTheme">false</x:Boolean> </ResourceDictionary> <ResourceDictionary x:Key="Dark"> <x:Boolean x:Key="IsDarkTheme">true</x:Boolean> </ResourceDictionary> <ResourceDictionary x:Key="Default"> <x:Boolean x:Key="IsDarkTheme">false</x:Boolean> </ResourceDictionary> </ResourceDictionary.ThemeDictionaries> </ResourceDictionary> </Application.Resources>
public bool IsDarkTheme { get { return (bool)Application.Current.Resources["IsDarkTheme"]; } }
另请注意,在某些情况下,您可能需要检查HighContrast – 根据MSDN,您可以通过检查AccessibilitySettings class或通过HighContrast值扩展您自己创建的ThemeResource来实现.