码迷,mamicode.com
首页 > 其他好文 > 详细

Image source 赋值问题

时间:2015-02-05 11:13:42      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

http://bbs.csdn.net/topics/390120529

最后通过这种方式实现 
 string url = carInfo.NetworkPath + carInfo.FileSource.First;
 // url:http://localhost/ITSImages/20120625/01/192168010176/卡口抓拍/皖J21742.jpg
                Uri uri = new Uri(url);
                WebClient w = new WebClient();
                w.OpenReadCompleted += (sender, e) =>
               {
                   if (e.Error == null)
                   {
                       BitmapImage bitImg = new BitmapImage();
                       bitImg.SetSource(e.Result);                       this.SSCX.pic.Source = bitImg;
                 
                   }
                   // else 
                   // this.SSCX.pic.Source ="本地图片";
               };
                w.OpenReadAsync(uri);


Image source 赋值问题

标签:

原文地址:http://www.cnblogs.com/xlyg-14/p/4274122.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!