更改状态栏中图标的颜色 - Windows 10 Mobile UWP应用程序

时间:2017-11-23 19:11:10

标签: c# uwp windows-10 uwp-xaml

我在Microsoft / Windows Store中发布了一个uwp应用程序,我希望在状态栏中更改图标的颜色。 我知道更改状态栏背景的颜色,但是我可以在Windows 10 Mobile的状态栏中更改图标的颜色吗?

1 个答案:

答案 0 :(得分:2)

像这样:

if (ApiInformation.IsTypePresent("Windows.UI.ViewManagement.StatusBar"))
{
    var statusBar = StatusBar.GetForCurrentView();
    if (statusBar != null)
        statusBar.ForegroundColor = Colors.Red;
}

您还需要在项目中添加对 Windows Mobile Extensions 的引用: enter image description here