0

将数据绑定到GridView,collection 中的每个项目都具有 URL 到外部服务器上图像的属性。

仅将其绑定到 Image 组件时,在加载图像时会出现延迟。

那么在winRT(c#)应用程序中显示来自网络的许多图像的最佳方式是什么?

4

1 回答 1

1

I would create a class which asynchronously downloads the images and sets a property of your data model (which implemenents INotifyPropertyChanged). This way you will not experience any lag and the image will be shown when it's downloaded.

于 2012-10-07T19:18:02.830 回答