Hello, I want to add an image to an Ultra Grid control.
In .NET the dataGridView does not allow for this. The way we handled it was that we added to the CellPaintEvent. We then tested if the Row & Col were = to -1. We then manually painted the image to the header.
I do not see the CellPaintEvent in the Ultra Grid and I'm wondering if there is a similar event that I can use!?
Or perhaps the Ultra Grid allows for an easier method.
Thanks for your time.
Hi,
What kind of header are you referring to? For a column header, you could do something like this:
column.header.Appearance.Image = myImage;
Is it possible to place more than one image on the Ultragrid Column Header?
Thanks, that's exactly what I was looking for.