Windows Phone 裝置資訊

來源:互聯網
上載者:User

  在進行Windows Phone開發的過程中,我們會需要擷取手機的一些相關資訊,如下列出如何擷取手機的一些常用資訊。

  一.裝置螢幕資訊
    double width = Application.Current.Host.Content.ActualWidth;
    double heigth = Application.Current.Host.Content.ActualHeight;

  二.裝置資訊相關(Microsoft.Phone.Info)
    
1.裝置廠商
    
string DeviceManufacturer = DeviceStatus.DeviceManufacturer;
    2.裝置名稱
    
string DeviceName = DeviceStatus.DeviceName;
    3.裝置ID
    byte[] result = null;
    object uniqueId;
    if (DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueId))
    {
      result = (byte[])uniqueId;
    }
    //轉換裝置ID為字串
    string DeviceUniqueId = Convert.ToBase64String(result);
    4.韌體版本
    
string DeviceFirmwareVersion = DeviceStatus.DeviceFirmwareVersion;
    5.硬體版本
    
string DeviceHardwareVersion = DeviceStatus.DeviceHardwareVersion;
    6.總記憶體
    
long DeviceTotalMemory = DeviceStatus.DeviceTotalMemory;
    7.應用程式當前使用記憶體
    
long ApplicationCurrentMemoryUsage = DeviceStatus.ApplicationCurrentMemoryUsage;
    8.應用程式使用記憶體峰值
    
long ApplicationPeakMemoryUsage = DeviceStatus.ApplicationPeakMemoryUsage;
    9.作業系統版本
    String osversion= System.Environment.OSVersion.Version.ToString();

  三.網路狀態
    
1. 擷取網路是否可用
    
bool flag = Microsoft.Phone.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable();
    2. 擷取當前手機連網類型
    
Microsoft.Phone.Net.NetworkInformation.NetworkInterface.NetworkInterfaceType
    Wireless80211是wifi
    None是沒有網路連接
    MobileBroadbandGsm是gsm 2g網路連接
    MobileBroadbandCdma 是CDMA 聯通3g
    Ethernet - 串連到電腦上網
    3. 擷取當前是否開啟網路連接
    
bool flag = Microsoft.Phone.Net.NetworkInformation.DeviceNetworkInformation.IsNetworkAvailable;
    4. 擷取是否開啟wifi
    
bool flag = Microsoft.Phone.Net.NetworkInformation.DeviceNetworkInformation.IsWiFiEnabled;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.