小编典典

在WPF中使用Image控件显示System.Drawing.Bitmap

c#

如何在WPF 中将内存Bitmap对象分配给Image控件?


阅读 1118

收藏
2020-05-19

共1个答案

小编典典

您可以使用图像的Source属性。试试这个代码…

ImageSource imageSource = new BitmapImage(new Uri("C:\\FileName.gif"));

image1.Source = imageSource;
2020-05-19