更改Windows Phone 8应用程序的背景颜色

时间:2014-03-17 05:07:43

标签: c# windows-phone-8

我尝试使用以下代码更改Windows Phone应用程序页面的背景颜色

(App.Current.Resources["PhoneAccentBrush"] as SolidColorBrush).Color = Colors.Red;    //For Changing the Accent Color
(App.Current.Resources["PhoneBackgroundBrush"] as SolidColorBrush).Color = Colors.White; //For Changing the Backgroung Color

应用程序的Accent颜色已成功更改,但我的应用程序背景颜色未更改。请你帮帮忙吗?

1 个答案:

答案 0 :(得分:1)

在App.xaml.cs中,在方法InitializePhoneApplication中,尝试将RootFrame对象Background Property更改为您想要的颜色。