2
votes

i have a question, i need to change the color of the title bar in a WP7 app.

here is my problem: i have the white theme enabled. then i generate a app and make the background black. when i start the app now, the title bar is white and that dont looks good, how can i change the color of the title bar in black theme?

2

2 Answers

5
votes

In Mango / 7.1, you can set the BackgroundColor property of SystemTray. If you're targetting 7.0, your only choice is to hide the SystemTray entirely using SystemTray.IsVisible.

1
votes

In code behind :

    SystemTray.BackgroundColor = System.Windows.Media.Colors.Orange;
    SystemTray.ForegroundColor = System.Windows.Media.Colors.Blue;