限制用户在重定目标窗口8.1中切换平板电脑模式()到窗口10?

时间:2017-02-09 07:00:51

标签: windows-store-apps win-universal-app windows-10-universal

我在窗口8.1中创建了一个应用程序并在Windows 10平板电脑上运行它,但我想仅以横向模式运行应用程序。 我需要限制用户从操作中心切换到平板电脑模式。

1 个答案:

答案 0 :(得分:0)

  

但我想只在横向模式下运行应用

您可以在包清单中添加InitialRotationPreference

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

这将使您的应用以横向显示,并且不会在以纵向或纵向翻转设备时更改方向。

了解更多详情,请参阅InitialRotationPreference

  

需要限制用户从操作中心切换平板电脑模式。

查看documentation中的最后一个常见问题:

屏幕旋转不一定与平板电脑模式有关。屏幕旋转与您当前的设备配置相关联,可能会也可能不会映射设备是否处于“平板电脑模式”

<强>更新

ConvertibleSlateModePromptPreference适用于OEM。目前还没有WinRT API来实现这一目标。