如何检查类型是设备还是模拟器?

时间:2015-09-01 12:17:57

标签: windows-10

我想有条件地检查Windows 10 UWP的设备类型运行时。已经有一个类和枚举可用于Windows Phone 8平台,如下所述。

  

Class - Microsoft.Devices.Environment.DeviceType

     

Enum - Microsoft.Devices.DeviceType

Windows 10平台的用途是什么?

1 个答案:

答案 0 :(得分:1)

我建议采用this方法。这些课程可用于UWP,如the documentation

所示
private static EasClientDeviceInformation deviceInfo = new EasClientDeviceInformation();


public static bool IsRunningOnEmulator
{
    get
    {
        return (deviceInfo.SystemProductName == "Virtual");
    }
}