如何覆盖强调色和默认背景色windows phone 8

时间:2013-06-14 06:53:11

标签: windows-phone-8

我想将整个应用程序中的Accent颜色更改为自定义颜色 目前它正在“设置”中选择的任何内容 还需要更改页面的默认背景颜色

1 个答案:

答案 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


同样,您可以更改Theme resources for Windows Phone

中指定的其他画笔/颜色