I'm using a checked combobox reprository item for my gridview, and i add multiple words into cell use by checkedcombobox. I want to autoresize the row cell height to show all content.
working with winform
You will have to handle the gridview's CalcRowHeight
event and set the height you want in there.
You also may have to handle the CustomColumnDisplayText
so that your cell has values put one below another.