在Windows Phone上下载背景图像

时间:2014-01-09 06:30:21

标签: windows-phone-8

我正在开发一个应用程序,我从web服务下载图像。如果有多个图像,则会消耗大量时间。所以我想在后台使用线程下载多个图像,并在下载时将它们显示在Image Control上。

3 个答案:

答案 0 :(得分:1)

我得到了我的答案设置BitmapCreateOptions.BackgroundCreation在后台工作。它很容易

BitmapImage imgage = new BitmapImage(new Uri(b, UriKind.Absolute));
            imgage.CreateOptions = BitmapCreateOptions.BackgroundCreation;

如果您想了解更多信息,请关注 MSDN POST

答案 1 :(得分:0)

您可以使用Windows手机的后台文件传输,帮助您在后台下载/上传文件,您可以从HereHere

了解有关后台文件传输的更多信息

答案 2 :(得分:0)

您需要一个后台工人类。查看官方文档 - msdn