asynchronous loading content in windows mobile 6.5 in c#
hey guys i am downloading data from url by make http request and then displaying data on mobile but as data is huge it 开发者_如何转开发takes lot of time to load the page so do you have solution for it or you know how to asynchronous loading content in windows mobile 6.5 in c# with example if any.........................
Download the data on a background thread. When downloading is complete either use an event to notify the UI that the data is ready or call a method that updates the UI (via Control.Invoke).
精彩评论