[Windows Phone]取得Device相關資訊
Windows Phone提供了一個DeviceStatus API,讓開發者可以取得手機的相關資訊。
類別 | 名稱 | 說明 |
屬性 | DeviceFirmwareVersion | 取得該Device目前使用的Firmware version |
屬性 | DeviceHardwareVersion | 取得該Device目前使用的Hardware version。 |
屬性 | DeviceManufacturer | 取得該Device的製造商名稱。 |
屬性 | DeviceName | 取得該Device的名稱。 |
屬性 | DeviceTotalMemory | 取得該Device的實體RAM大小,以bytes為單位。 |
先引用
1: using Microsoft.Phone.Info;
之後只要寫入想取得的內容就好
1: tbl1.Text = string.Format("Total: {0} MB", (DeviceStatus.DeviceTotalMemory / 1048).ToString());
2: tbl2.Text= string.Format("DeviceFirmwareVersion: {0}", DeviceStatus.DeviceFirmwareVersion);
3: tbl3.Text= string.Format("DeviceHardwareVersion: {0}", DeviceStatus.DeviceHardwareVersion);
4: tbl4.Text= string.Format("DeviceManufacturer: {0}", DeviceStatus.DeviceManufacturer);
5: tbl5.Text= string.Format("DeviceName: {0}", DeviceStatus.DeviceName);
Reference
Device Status for Windows Phone
How to: Use the DeviceStatus Class for Windows Phone
若有觀念錯誤、內容錯誤,勞請告知。 謝謝。
若要轉載請註明出處,謝謝。