I am developing window phone 7 application. I am new to the window phone 7 application. I want to change the background color of the entire xaml page in the window phone 7 application. I have tried the following code in the constructor of the xaml page
this.Background = new SolidColorBrush(Colors.White);
But it is not working.
I have also added the attribute in the phone:PhoneApplicationPage tag as follows
<phone:PhoneApplicationPage
Background="Red"
But it is also not working. Can you please provide me any code or link or any solution through which I can resolve the above issue? If I am doing anything wrong then please guide me.