状态栏的颜色 - Windows 10 Mobile

时间:2017-05-09 11:06:23

标签: c# uwp windows-10-mobile template10

我正在开发一个uwp应用程序,我正在使用template10。在模板10中,有一个选择暗主题或浅主题的选项。当我选择黑暗主题时,Windows 10 Mobile的状态栏是黑色的(到目前为止很好),但是当我选择灯光主题时,状态栏是白色的。在选择灯光主题时,我希望状态栏为黑色(与黑暗主题一样)。有可能吗?

2 个答案:

答案 0 :(得分:3)

您可以使用以下代码设置状态栏的颜色:

StatusBar.GetForCurrentView().BackgroundColor = Colors.Black;

答案 1 :(得分:0)

  

不幸的是它没有:(应该是因为我使用的是Template10

模板10不应影响状态栏。请将状态栏的BackgroundOpacity设置为1,然后重新测试。

StatusBar.GetForCurrentView().BackgroundColor = Colors.Black;
StatusBar.GetForCurrentView().BackgroundOpacity = 1;