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

时间:2024-01-13 15:52:26

背景色:

Application.Current.RequestedTheme

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

主题色:

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