Async CTP is a good thing, is installed when the comparison pit ...
With n more than a patch conflict, as long as the installation sequence to be able to successfully install ...
You can refer to the previous writing: http://www.cnblogs.com/sun8134/archive/2011/09/19/2181030.html
Asynchronous is a good thing, can let the background data operation when the foreground also has the reaction, not the card dead
Install the async CTP, as long as in the WP Project reference asyncctplibrary_phone.dll can be used async and await to implement asynchronous loading
MS has encapsulated some asynchronous operations, such as the WebClient can be used directly:
Uri UI = new Uri (URL);
System.Net.WebClient WC1 = new System.Net.WebClient ();
String TXs = await wc1. Downloadstringtaskasync (UI);
Here's how you can use async and await to implement asynchronous load data
In the example, our goal is to load an XML and bind the data to the listbox
First, I randomly found a student's grade XML.
Then make a data class Students.cs
Then edit the binding template for the next listbox: