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

本文关键字:背景 颜色 应用程序 Windows Phone 更改 | 更新日期: 2023-09-27 17:50:44

我想用下面的代码改变我的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

应用程序的重音颜色更改成功,但我的应用程序背景颜色没有更改。请用这个给我掌舵?

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

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