Windows Phone利用Async CTP實現非同步載入資料

來源:互聯網
上載者:User

Async CTP是個好東西額,就是安裝的時候比較坑…

跟N多補丁衝突,只要安裝順序對了才能順利裝上…

可以參考下以前寫的:http://www.cnblogs.com/sun8134/archive/2011/09/19/2181030.html

非同步是個好東西,可以讓後台資料操作時前台也有反應而不是卡死

安裝好Async CTP後,只要在wp項目中引用AsyncCtpLibrary_Phone.dll就可以使用async和await來實現非同步載入了

MS已經封裝好了一些非同步作業,比如WebClient裡就可以直接使用:

Uri ui = new Uri(urls);

System.Net.WebClient wc1 = new System.Net.WebClient();

string txs = await wc1.DownloadStringTaskAsync(ui);

下面來介紹下如何自己使用async和await來實現非同步載入資料

執行個體中我們的目的是載入一個xml,並將資料繫結到listbox上來

首先我隨便找了個學產生績的XML

然後製作一個資料類students.cs

然後再編輯下listbox的綁定模板:

相關文章

聯繫我們

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