Windows Phone 8应用程序 - 如何更改时钟和顶部栏图标的颜色

时间:2015-02-15 14:57:39

标签: windows-phone-8 colors themes

我正在创建一些WP8应用程序,我想要更改最顶部栏的前景色,其中时钟和其他图标,如WiFi或电话网络范围。我想做一些类似于应用程序的地方,其中时钟和其他人变成蓝色。像这样: enter image description here 谁知道怎么做?

1 个答案:

答案 0 :(得分:1)

您可以在xaml中更改它,BTW它被称为系统托盘而不是顶部栏。

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

希望这有助于你