WPF 中的image控件的Source如何赋值?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 中的image控件的Source如何赋值?相关的知识,希望对你有一定的参考价值。
我使用image xxx = new image();xxx.Source = "\daw\adw.jpg";提示无法将string转换为image.source类型的
参考技术A xxx.Source = new BitmapImage(new Uri("/daw/adw.jpg", UriKind.RelativeOrAbsolute));WPF 保存image控件里的图片
原文:WPF 保存image控件里的图片string ProImgPath = ProcessPath + name + ".png";//要保存的图片的地址,包含文件名 BitmapSource BS = (BitmapSource)ImgPro.Source; PngBitmapEncoder PBE = new PngBitmapEncoder(); PBE.Frames.Add(BitmapFrame.Create(BS)); using (Stream stream = File.Create(ProImgPath)) { PBE.Save(stream); }
以上是关于WPF 中的image控件的Source如何赋值?的主要内容,如果未能解决你的问题,请参考以下文章
急等,在wpf中怎么才能把image控件的source属性绑定到listview中的选中项