简体   繁体   中英

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: 在此处输入图片说明 Anybody knows how o do it?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM