我想将整个应用程序中的Accent颜色更改为自定义颜色 目前它正在“设置”中选择的任何内容 还需要更改页面的默认背景颜色
答案 0 :(得分:2)
您可以将其放在App.xml.cs
构造函数
//This will change the default accent color
(App.Current.Resources["PhoneAccentBrush"] as SolidColorBrush).Color = Colors.Green;
//This will change the default background color for pages
(App.Current.Resources["PhoneBackgroundBrush"] as SolidColorBrush).Color = Colors.White;
//other code
中指定的其他画笔/颜色