我使用的api需要使用的设备的型号名称。在Windows 8中,我会使用Microsoft.Phone.Info.DeviceStatus.DeviceName
。但是,我正在Windows 8.1中创建一个新的通用应用程序和Microsoft.Phone'命名空间似乎不见了。
如何在Windows 8.1中找到与通用应用程序一起使用的设备的型号名称
答案 0 :(得分:7)
您可以使用EasClientDeviceInformation类来检索设备信息。
样品:
var deviceInformation = new EasClientDeviceInformation();
var deviceName = deviceInformation.FriendlyName;
var operatingSystem = deviceInformation.OperatingSystem;
答案 1 :(得分:0)