我创建了一个Xamarin.Forms应用程序,当我在运行build 14393的Windows 10移动设备中启动应用程序时,我看到了额外的空白区域,而不是电池和其他指示灯。
答案 0 :(得分:0)
您必须将UWP的Windows Mobile Extension包含在Windows UWP项目中。
修改OnLaunched的Windows UWP项目的App.xaml.cs,并添加以下内容:
if (ApiInformation.IsTypePresent("Windows.UI.ViewManagement.StatusBar"))
{
var statusBar = StatusBar.GetForCurrentView();
if (statusBar != null)
{
statusBar.BackgroundOpacity = 1;
statusBar.BackgroundColor = Colors.Black;
statusBar.ForegroundColor = Colors.White;
}
}