我不明白为什么当我在1280 x 800设备(HP Stream 7签名版)上运行示例Windows 8.1应用程序时,它会在平板电脑模式下全屏运行时报告以下值:
以及禁用平板电脑模式时的不同选项:
以下代码用于显示值:
var displayInformation = DisplayInformation.GetForCurrentView();
WidthView.Text = string.Format("Width: {0}", Window.Current.Bounds.Width);
HeightView.Text = string.Format("Height: {0}", Window.Current.Bounds.Height);
ScaleFactorView.Text = String.Format("Scale factor: {0}", displayInformation.ResolutionScale);
我很惊讶:
我一定错过了什么。