我怎么知道旋转锁是打开还是关闭?

时间:2014-09-06 10:54:51

标签: c# windows-phone-8

我只需要知道是否有办法在Windows Phone 8中获得旋转锁定状态,例如

if(rotationLock == ON)do stuff;

1 个答案:

答案 0 :(得分:1)

很遗憾没有任何方法或方法知道旋转锁是开/关。但您可以设置 SupportedOrientations Xaml 中的>方向,或者您可以在 CS 中管理方向,如下所示:

protected override void OnOrientationChanged(OrientationChangedEventArgs e)
{
    if (e.Orientation == PageOrientation.LandscapeLeft)
        base.OnOrientationChanged(e);
}