首页 > 代码库 > WPF笔记整理--DataBinding(2)
WPF笔记整理--DataBinding(2)
图片绑定时的一个问题。场景如下:
有2个窗口A和B,A窗口的业务逻辑是编辑生成图片。然后从A窗口可以打开B窗口。B窗口是由A生成所有图片的列表。当在A窗口编辑生成图片并保存后打开B窗口就会看到刚刚生成的图片。关闭B窗口,可以在A窗口中继续编辑图片,再次保存图片并打开B窗口,就会看到最新的图片的变化。图片是保存在本地路径。
解决方案:定义一个Converter,将图片读到MemoryStream中,然后再Binding。代码如下:
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { if (value =http://www.mamicode.com/= null) { return value; } byte[] imagebytes; var file = new FileInfo(value.ToString()); using (BinaryReader reader = new BinaryReader(file.OpenRead())) { imagebytes = reader.ReadBytes((int)file.Length); } var newSource = new BitmapImage(); newSource.BeginInit(); newSource.StreamSource = new MemoryStream(imagebytes); newSource.EndInit(); return newSource; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。