我只需要知道是否有办法在Windows Phone 8中获得旋转锁定状态,例如
if(rotationLock == ON)do stuff;
答案 0 :(得分:1)
很遗憾没有任何方法或方法知道旋转锁是开/关。但您可以设置 SupportedOrientations 和 Xaml 中的>方向,或者您可以在 CS 中管理方向,如下所示:
protected override void OnOrientationChanged(OrientationChangedEventArgs e)
{
if (e.Orientation == PageOrientation.LandscapeLeft)
base.OnOrientationChanged(e);
}