您可以使用图像的Source属性。试试这个代码...ImageSource imageSource = new BitmapImage(new Uri("C:\\FileName.gif"));image1.Source = imageSource; 0 0 0 三国纷争 对于磁盘文件来说很容易,但是对于内存中的位图则更难。System.Drawing.Bitmap bmp;Image image;...MemoryStream ms = new MemoryStrea...
上一篇中 WPF --- 重写圆角DataGrid样式,因新产品UI需要,重写了一下微软 「WPF」 原生的 DataGrid ...
ImageSource imageSource = new BitmapImage(new Uri("C:\FileName.gif")); image1.Source = ima...
技术标签:BitmapImageWPFWritableBitmapBitmapImage WPF中显示图片的控件为Image控件。以下分别介绍显示图片文件和内存位图的使用方法,主要介绍如何赋予Image对象的Source属性值。 (一)使用图片文件 方式一: <Image Width="320" Source="D:\\xxx.jpg"/> 方式二: <Image Width="320"> ... ...
Image image; ... MemoryStream ms = new MemoryStream(); bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Png); ms.Position = 0; BitmapImage bi = new BitmapImage(); bi.BeginInit(); bi.StreamSource = ms; bi.EndInit(); image.Source = bi; 查看完整回答 反对 回复 2019-11-29 没...