I would like to have a combo box that contains 3 small Icons or Bitmaps, I dont mind which.
I have tried the following code to add 1 image:
DataGridViewComboBoxColumn statusColumn = new DataGridViewComboBoxColumn();
Icon greenIcon = new Icon("../../Resources/green_tick.ico");
Bitmap bitmapGreen = greenIcon.ToBitmap();
object itemtoadd = bitmapGreen;
statusColumn.Items.Add(itemtoadd);
All that happens is it has the Type name in the combobox and an execption is thrown.
Can anyone help me display an image in a combo box?