标签:
背景色:
Application.Current.RequestedTheme
返回的值是一个枚举,Light 或者 Dark。
主题色:
public static Color GetPhoneAccentColor() { // (Color)Application.Current.Resources["PhoneAccentColor"] 已经不能使用了,会找不到这个资源。 var brush = (SolidColorBrush)Application.Current.Resources["PhoneAccentBrush"]; return brush.Color; }
标签:
原文地址:http://www.cnblogs.com/h82258652/p/4232280.html