在Windows Phone 8 Update 3之后是否有选配器或启动器来启动屏幕旋转设置?

时间:2014-01-06 13:08:01

标签: windows-phone-8

在Windows Phone Store中有一个名为“自动旋转屏幕”的应用程序,它可以启动屏幕旋转设置,它是如何实现的?

http://www.windowsphone.com/en-us/store/app/auto-rotate-screen/956f2246-fb85-43c4-a48c-bcc7bc8e484b

1 个答案:

答案 0 :(得分:2)

当然有一个Luncher可以做到这一点。

URI方案是:"ms-settings-screenrotation:"

午餐只需写下:

Launcher.LaunchUriAsync(new Uri("ms-settings-screenrotation:"));

为避免错误,请先检查设备上是否有Windows Phone 8的更新3:

private static Version TargetedVersion = new Version(8, 0, 10492);
public static bool IsTargetedVersion
{
    get { return Environment.OSVersion.Version >= TargetedVersion; }
}

(Source)