Problem: My DataGridView has tall cells because of some images in previous columns. So the ComboBox column shows a ComboBox spread on the whole height (and width) of each cell, which just looks unacceptable.
Question: Is there a way to set the size and location of the ComboBox so that it is centered in each cell and maintains its default size?
Note: From googling around it appears that this might be possible by creating my own custom column to host a ComboBox and override the paint event, but before I go that route I want to make sure that's the only way.