I'm making a Windows Forms application which has a standard DataGridView
in it. The DataGridView
has several DataGridViewComboBoxColumn
s in it. And they are a pain to work with. To get one of them to open up (as in, drop down the list), you have to click the cell at least 3 (!!!) times. Seems that the first click ends the editing of the previous cell; The second click activates the cell; and only the third click gets sent to the combobox itself. User interface nightmare, especially when you have to enter a lot of data through these comboboxes.
Is there any workaround?
Added: I just tried it in a blank solution. Just a single form with a single datagridview. The same issue. My colleagues are having the same problem, so I can't be the only one with this. Is there no standard workaround?