您的位置:首页 > 其它

Wp8 读取手机信息

2013-06-28 16:25 120 查看
/// <summary>
/// 获取系统信息
/// </summary>
private void GetSystemInfo()
{
lblMsg.Text = string.Empty;
lblMsg.Text += "设备制造商:" + DeviceStatus.DeviceManufacturer;
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "设备名称:" + DeviceStatus.DeviceName;
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "物理内存:" + (DeviceStatus.DeviceTotalMemory / 1024 / 1024).ToString() + "M";
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "硬件版本:" + DeviceStatus.DeviceHardwareVersion;
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "固件版本:" + DeviceStatus.DeviceFirmwareVersion;
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "物理键盘:" + DeviceStatus.IsKeyboardDeployed.ToString();
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "供电方式:" + DeviceStatus.PowerSource;
lblMsg.Text += System.Environment.NewLine;
object uniqueID = "";
DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueID);
if (uniqueID != null)
{
lblMsg.Text += "设备标识:" + uniqueID.ToString();
}
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "系统内核:" + System.Environment.OSVersion.Platform.ToString();
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "系统版本:" + System.Environment.OSVersion.Version.ToString();
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "当前语言:" + CultureInfo.CurrentCulture.DisplayName;
lblMsg.Text += System.Environment.NewLine;
lblMsg.Text += "当前时区:UTC" + DateTimeOffset.Now.ToString("%K");
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: