One-Click DataGridViewComboBoxCell
-
Hello! My application has a
DataGridView
, which contains aDataGridViewComboBoxCell
. Is there any way to make the combo box drop down its list on the first mouse click? Currently, the first mouse click activates the cell, the second one creates the hosted combo box, and the third click finally drops down the combo box list. I'd like the combo box drop down immediately on one click instead of 3. Thanks and best regards Dominik
Too many passwords to remember? Try KeePass Password Safe!
-
Hello! My application has a
DataGridView
, which contains aDataGridViewComboBoxCell
. Is there any way to make the combo box drop down its list on the first mouse click? Currently, the first mouse click activates the cell, the second one creates the hosted combo box, and the third click finally drops down the combo box list. I'd like the combo box drop down immediately on one click instead of 3. Thanks and best regards Dominik
Too many passwords to remember? Try KeePass Password Safe!
Hi I am not sure if you can set it for individual cells. If you set the EditMode of the DataGridView itself to EditOnEnter then the comboboxes drop down at the first click. Unless another DataGridViewComboBoxCell was in open position. Then the first click will first close the open one and the second click will open the selected DataGridViewComboBoxCell. All the other cells in the DataGridViewRow will also now be editable as soon as they get focus. Regards. Kobus
-
Hi I am not sure if you can set it for individual cells. If you set the EditMode of the DataGridView itself to EditOnEnter then the comboboxes drop down at the first click. Unless another DataGridViewComboBoxCell was in open position. Then the first click will first close the open one and the second click will open the selected DataGridViewComboBoxCell. All the other cells in the DataGridViewRow will also now be editable as soon as they get focus. Regards. Kobus
That's exactly what I was looking for. Works perfectly, thank you very much!! Best regards Dominik
Too many passwords to remember? Try KeePass Password Safe!
-
That's exactly what I was looking for. Works perfectly, thank you very much!! Best regards Dominik
Too many passwords to remember? Try KeePass Password Safe!