windows-phone-8.1 – 如何检测在Windows 10 Mobile上启动的WP8.1应用程序?
发布时间:2020-05-22 20:30:01 所属栏目:Windows 来源:互联网
导读:我需要在我的WP8.1应用程序代码中检查操作系统版本(WP 8.1或W10).有什么更好的方法呢?为此目的可能是反思或一些特殊的API? 我没有找到任何其他方法来做到这一点,所以这是我的方法. 以下属性IsWindows10检测Windows 10(包括Windows 10 Mobile)设备上是否运行
|
我需要在我的WP8.1应用程序代码中检查操作系统版本(WP 8.1或W10).有什么更好的方法呢?为此目的可能是反思或一些特殊的API? 我没有找到任何其他方法来做到这一点,所以这是我的方法. 以下属性IsWindows10检测Windows 10(包括Windows 10 Mobile)设备上是否运行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)具有这两个属性.这就是我们如何检测应用程序运行的操作系统的方法. (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- 如何在东芝笔记本电脑和Windows 7上使用python进行文本到语
- windows – 为cmd启用颜色输出
- win10连接远程桌面,出现身份验证错误,要求的函数不正确,
- jboss7.x – 无法登录到windows上的jboss 7.1管理控制台
- libglog.dll CMake 在Windows上编译、应用glog
- Qt for Windows:Qt 5.11.0 MinGW 静态编译版本(包含OpenS
- windows-phone-8 – 启动TaskHost.exe失败,尝试运行Windows
- 高收益的笨办法:暴破在Windows提权中的应用
- azure-active-directory – Microsoft Azure AD图API:如何
- 在没有Microsoft.NET.Sdk.Web的情况下使用Razor
