WP8.1 中获取背景色和主题色

背景色:

Application.Current.RequestedTheme

返回的值是一个枚举,Light 或者 Dark。

 

主题色:

    public static Color GetPhoneAccentColor()
    {
        // (Color)Application.Current.Resources["PhoneAccentColor"] 已经不能使用了,会找不到这个资源。
        var brush = (SolidColorBrush)Application.Current.Resources["PhoneAccentBrush"];
        return brush.Color;
    }

 

posted @ 2015-01-18 20:58  h82258652  阅读(436)  评论(0编辑  收藏  举报