chotkos
chotkos

Reputation: 180

Windows Phone 8 App - How to change color of clock and top bar icons

I am creating some WP8 app and I want to change foreground color of the most top bar where the clock and other icons like WiFi or telephone network range. I want to do something like in linkedin app where clock and others become blue. Like this: enter image description here Anybody knows how o do it?

Upvotes: 1

Views: 192

Answers (1)

Anas Waleed
Anas Waleed

Reputation: 36

You can change it in xaml, BTW it is called System Tray not top bar.

<phone:PhoneApplicationPage
...
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
shell:SystemTray.IsVisible="True"
shell:SystemTray.BackgroundColor="Blue">
...

Hope this helped you

Upvotes: 1

Related Questions