我需要在我的WP8.1应用程序代码中检查操作系统版本(WP 8.1或W10)。有什么更好的方法呢?为此目的可能是反思或一些特殊的API?
答案 0 :(得分:4)
我没有找到任何其他方法来做到这一点,所以这是我的方法。
以下属性IsWindows10
检测Windows 8(包括Windows 10移动)设备上是否运行Windows 8.1或Windows Phone 8.1应用程序。
#region IsWindows10
static bool? _isWindows10;
public static bool IsWindows10 => (_isWindows10 ?? (_isWindows10 = getIsWindows10Sync())).Value;
static bool getIsWindows10Sync()
{
bool hasWindows81Property = typeof(Windows.ApplicationModel.Package).GetRuntimeProperty("DisplayName") != null;
bool hasWindowsPhone81Property = typeof(Windows.Graphics.Display.DisplayInformation).GetRuntimeProperty("RawPixelsPerViewPixel") != null;
bool isWindows10 = hasWindows81Property && hasWindowsPhone81Property;
return isWindows10;
}
#endregion
它是如何运作的?
在Windows 8.1中,Package
类具有DisplayName
属性,Windows Phone 8.1没有该属性。
在Windows Phone 8.1中,DisplayInformation
类具有RawPixelsPerViewPixel
属性,Windows 8.1没有该属性。
Windows 10(包括Mobile)具有这两个属性。这就是我们如何检测应用程序运行的操作系统的方法。
答案 1 :(得分:-1)