9

我开发了一个不支持纵向模式的 XAML / C# Windows 8 应用程序。我已经在 Visual Studio 中打开了 Package.appxmanifest,并在“支持的旋转”下禁用了纵向和纵向翻转模式。这创建了以下旋转首选项:

        <InitialRotationPreference>
          <Rotation Preference="landscape" />
          <Rotation Preference="landscapeFlipped" />
        </InitialRotationPreference>

但是,当我在模拟器中启动我的应用程序并旋转模拟器时,应用程序仍会旋转到纵向模式。我怎样才能防止这种情况发生?

谢谢,

阿德里安

4

2 回答 2

7

Windows 8 中的模拟器似乎不尊重您的旋转偏好。不幸的是,在连接到运行 Windows 8 的实际平板电脑之前,无法判断这些设置是否按预期工作。

查看这篇文章以获取更多信息,直接来自 MSDN:http: //msdn.microsoft.com/en-us/library/windows/apps/windows.graphics.display.displayproperties.autorotationpreferences

于 2012-06-29T18:12:58.130 回答
2

以防万一有人没有注意到编译器警告,DisplayProperties 现在已经过时了。设置 AutoRotationPreferences 的新方法是,

DisplayInformation.AutoRotationPreferences = DisplayOrientations.Landscape;
于 2013-12-06T20:12:17.070 回答