uwp一些绑定图像源不会出现错误

时间:2017-02-05 13:30:24

标签: c# listview uwp

我用

列表
 public class imageclass
    {
        private string gettingimage ;

        public string GettingImage
        {
            get
            {
                return gettingimage;
            }
            set
            {
                if (value != gettingimage)
                {

                    gettingimage = value;
                    if (PropertyChanged != null)
                    {
                        PropertyChanged(this, new PropertyChangedEventArgs("GettingImage"));
                    }

                    //Debug.WriteLine(GettingImage); //http://immgur.jpg/
                }
            }
        }
    }
observablecollection<imageclass> imglist = new observablecollection<imageclass>()
   var collecting = lotimageurlcollection();

   foreach(string lists in collecting.tolist()){
    imglist.add(new imageclass() { GettingImage = lists.uri});
    }

在xaml设计中 <image source={Binding GettingImage} wide="111" height="100">

问题=&gt;假设我得到总数:190张带有uri图像的绑定图像。

列表视图图像源中出现90个图像 未出现100张图片

我已经通过调试写线单独检查了所有190 uri uri是好的,因为我看到190 uri是完美的图像但在我的列表视图中没有出现所有图像, 这是uwp中的错误还是? 有人可以解决这个问题

0 个答案:

没有答案