这是我的数据网格,我想在网格列中显示图像,但它显示的是文本System.Windows.Media.Imaging.BitmapImage
,而不是显示图像。如何在数据网格列中添加图像?
这是我尝试过的:
Dictionary dict1=new Dictionary < string,object>();
string keyimage="Image";
object a1 = new BitmapImage();
a1=Imaging.CreateBitmapSourceFromHIcon(SystemIcons.Information.Handle, Int32Rect.Empty, null);
dict1.Add(keyimage, a1);
这dict1
适用Itemsource
于数据网格............如何使图像显示在数据网格列中?