Windows Phone 監視記憶體使用量情況

來源:互聯網
上載者:User

 在調試Windows Phone程式的時候,我們通常需要知道當前程式佔用的記憶體是多少,有沒有發生記憶體泄露。

 在之前的Windows Phone 7 Tips (5) 中有提到EnableFrameRateCounter 是監視程式運行時的畫面播放速率,具體的用法如下

// Show graphics profiling information while debugging.if (System.Diagnostics.Debugger.IsAttached){  // Display the current frame rate counters.  Application.Current.Host.Settings.EnableFrameRateCounter = true;

以下是右側工具條的具體解釋

 

 這裡並沒有我們想要看的記憶體的使用方式,如何去做呢。在Windows Phone 中有這麼一個類 Microsoft.Phone.Info.DeviceExtendedProperties  提供記憶體的使用方式,具體的屬性指如下:

屬性值 傳回值 描述
DeviceTotalMemory long integer 裝置總記憶體(單位位元組)
ApplicationCurrentMemoryUsage long integer 當前應用程式記憶體使用量量(單位位元組)
ApplicationPeakMemoryUsage long integer 當前應用程式最高使用量(單位位元組)

 可能你需要寫如下的代碼來查看這些資料

 

當然還有更簡單的方法,就是引入一個dll(Dll下載),然後寫幾段代碼就完事了。 

 dnp.Counter.EnableMemoryCounter = true;

 預設是2秒重新整理一次,當然你可以自己設定重新整理間隔

 dnp.Counter.SetTimerInterval(1);

 

參考

http://blogs.msdn.com/b/mikeormond/archive/2010/12/16/monitoring-memory-usage-on-windows-phone-7.aspx 

http://dotnetprofessional.com/blog/post/2010/09/27/Debug-Memory-Counter-for-Windows-Phone-7.aspx 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.