如何在Windows手机中找到锁定的屏幕旋转,我会尝试通过我的愤怒发布清晰易读的内容。
我在这里看到了几个关于如何检查屏幕旋转是否被锁定的帖子,但没有一个对我有效。
答案 0 :(得分:0)
有一个AutoRotationPreferences
属性,您可以设置显示器的方向。
private void LockOrientationChange()
{
DisplayProperties.AutoRotationPreferences = DisplayProperties.CurrentOrientation;
}
private void UnlockOrientationChange()
{
DisplayProperties.AutoRotationPreferences =
DisplayOrientations.Landscape |
DisplayOrientations.LandscapeFlipped |
DisplayOrientations.Portrait |
DisplayOrientations.PortraitFlipped;
}
请参阅此帖子了解更多信息:
http://developer.nokia.com/community/wiki/Implementing_Orientation_Lock_In_Windows_Phone