WPF 之 后台设置Image的Souce


  后台动态设置Image的Souce。

方法一:

BitmapImage imgSource = new BitmapImage(new Uri("location",UriKind.Relative));

Image image = new Image();

image.Souce = imgSource;

 

方法二:

MemoryStream ms = new MemoryStream()

----初始化ms------

BitmapImage imgSource = new BitmapImage();

imgSouce.BeginInit();

imgSouce.StreamSouce = new MemoryStream(ms.ToArray());

imgSouce.EndInit();

 

Image image = new Image();

image.Souce = imgSource;

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM