我想有条件地检查Windows 10 UWP的设备类型运行时。已经有一个类和枚举可用于Windows Phone 8平台,如下所述。
Class - Microsoft.Devices.Environment.DeviceType
Enum - Microsoft.Devices.DeviceType
Windows 10平台的用途是什么?
答案 0 :(得分:1)
我建议采用this方法。这些课程可用于UWP,如the documentation
所示private static EasClientDeviceInformation deviceInfo = new EasClientDeviceInformation();
public static bool IsRunningOnEmulator
{
get
{
return (deviceInfo.SystemProductName == "Virtual");
}
}