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

WPF Image控件使用本地图片

时间:2014-08-14 15:50:28      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   io   div   log   new   

        BitmapImage bi = new BitmapImage();
            // BitmapImage.UriSource must be in a BeginInit/EndInit block.
            bi.BeginInit();
            StreamResourceInfo info = Application.GetRemoteStream(new Uri("Test.jpg", UriKind.Relative));
            bi.StreamSource = info.Stream;
            bi.EndInit();
            // Set the image source.
            IMTest.Source = bi;   

 

WPF Image控件使用本地图片,布布扣,bubuko.com

WPF Image控件使用本地图片

标签:style   blog   color   使用   io   div   log   new   

原文地址:http://www.cnblogs.com/badnewfish/p/3912382.html

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