我开发了一个不支持纵向模式的 XAML / C# Windows 8 应用程序。我已经在 Visual Studio 中打开了 Package.appxmanifest,并在“支持的旋转”下禁用了纵向和纵向翻转模式。这创建了以下旋转首选项:
<InitialRotationPreference>
<Rotation Preference="landscape" />
<Rotation Preference="landscapeFlipped" />
</InitialRotationPreference>
但是,当我在模拟器中启动我的应用程序并旋转模拟器时,应用程序仍会旋转到纵向模式。我怎样才能防止这种情况发生?
谢谢,
阿德里安