windows-phone-8.1 – 如何以编程方式检查Windows Phone 8.1中当前设置的主题?

前端之家收集整理的这篇文章主要介绍了windows-phone-8.1 – 如何以编程方式检查Windows Phone 8.1中当前设置的主题?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想检查用户是否设置了浅色或深色主题.是否可以在 Windows Phone 8.1(商店应用程序)中以编程方式执行此操作.
MSDN,您将找到示例代码,您可以使用它们来确定当前主题 – 通过比较资源.例如:
private 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来实现.

原文链接:https://www.f2er.com/windows/363318.html

猜你在找的Windows相关文章