UI上方的空白区域

时间:2016-09-04 18:23:16

标签: xamarin xamarin.forms

我创建了一个Xamarin.Forms应用程序,当我在运行build 14393的Windows 10移动设备中启动应用程序时,我看到了额外的空白区域,而不是电池和其他指示灯。

1 个答案:

答案 0 :(得分:0)

  1. 您必须将UWP的Windows Mobile Extension包含在Windows UWP项目中。

  2. 修改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;
            }
        }