Hi,
I have an XtraGrid component which fills its cells with content by having its DataSource property assigned.
All of the cells currently have just text in them, and I would like to add images into the cells, alongside the existing text, without adding extra columns or overriding the custom draw routines.
It would seem that it's possible, as if you go into the grid Designer, then Feature Browser, it shows what I'm trying to achieve, with little pictures of cherries next to "Procuce", and cheeses next to "Dairy Products", all in the same column.
How can I achive this?
I'd rather avoid doing custom drawing of cells, because that would mean having to do custom drawing for all cells, to make sure the style all matches up. I'm hoping that it will be a case of tapping into the right event, and setting a "Cell.ImageIndex" property or something...