Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Direct access to DataGridView combobox in one click?

I'm getting annoyed with clicking once to select a row in the datagridview, and then clicking again to click on a control in that row (in this case a combobox).

Is there a way configure this thing so that all this can be done in one mouse click instead of two?

like image 275
Isaac Bolinger Avatar asked Aug 10 '10 00:08

Isaac Bolinger


1 Answers

Change the EditMode property of your DataGridView control to "EditOnEnter". This will affect all columns though.

like image 166
Stuart Helwig Avatar answered Sep 23 '22 00:09

Stuart Helwig