我在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;
}