是否可以在UWP应用程序中按设备系列锁定方向?

时间:2016-06-28 13:09:23

标签: uwp screen-orientation

我想将屏幕方向锁定为只适用于移动家庭的人像。 如果我只检查应用程序清单中的肖像,它可以工作:屏幕被锁定为纵向移动,但我认为它对于平板电脑是相同的(实际上,我没有平板设备进行测试)。

1 个答案:

答案 0 :(得分:4)

根据这个SO答案 UWP C# Disable Orientation Change Animation

您需要在OnNavigatedTo覆盖中设置屏幕方向。

protected override void OnNavigatedTo(NavigationEventArgs e)
{
      if(/*on phone*/)
      {
        DisplayInformation.AutoRotationPreferences = DisplayOrientation.//Your Enum Value
      }
}

以下是DisplayOrientations off of the MSDN documentation

的列表

enter image description here