I'm trying (using C#) to put an image (Icon or Bitmap maybe) in the column header cell of a DataGridView. I have no problems putting images in other cells. I do that like this:
myDataRow["The Column"] = icon.ToBitmap() ;
But how do I put one into the column header cell?
Thanks,
Mattias