EasClientDeviceInformation deviceInfo = new EasClientDeviceInformation();

this.showDeviceInfo.Items.Add("设备友好名称:" + deviceInfo.FriendlyName);
this.showDeviceInfo.Items.Add("设备标识符:" + deviceInfo.Id);
this.showDeviceInfo.Items.Add("设备操作系统:" + deviceInfo.OperatingSystem);
this.showDeviceInfo.Items.Add("设备固件版本:" + deviceInfo.SystemFirmwareVersion);
this.showDeviceInfo.Items.Add("设备硬件版本:" + deviceInfo.SystemHardwareVersion);
this.showDeviceInfo.Items.Add("设备制造商:" + deviceInfo.SystemManufacturer);
this.showDeviceInfo.Items.Add("设备系统产品:" + deviceInfo.SystemProductName);
this.showDeviceInfo.Items.Add("设备SKU:" + deviceInfo.SystemSku); 

 

如需要详细到设备每个模块的信息使用:

System.Text.StringBuilder sb = new System.Text.StringBuilder();
Windows.Devices.Enumeration.DeviceInformationCollection dc = await Windows.Devices.Enumeration.DeviceInformation.FindAllAsync();

foreach (Windows.Devices.Enumeration.DeviceInformation item in dc)
{
    sb.Append(item.Name + ":\t" + item.Id + "\r\n");
} 

 

相关文章:

  • 2021-07-24
  • 2022-12-23
  • 2022-12-23
  • 2021-08-13
  • 2021-08-12
  • 2021-08-23
  • 2021-04-11
猜你喜欢
  • 2021-05-29
  • 2022-12-23
  • 2021-06-21
  • 2022-12-23
  • 2021-12-18
  • 2021-05-25
  • 2021-07-15
相关资源
相似解决方案