DataGridViewComboBoxColumn - Requires multiple clicks to get menu to dropdown?

  • Thread starter Thread starter ESmith
  • Start date Start date
E

ESmith

How can I pass the initial mouse click through to the dropdown control on a
DataGridView? Currently, the user needs to click on it - I guess first to
select, then again on it to see the dropdown choices (sometimes this
requires several clicks). The CheckBox doesn't seem to have this issue - is
there something basic I'm missing in the setup on these columns?
 
ESmith said:
How can I pass the initial mouse click through to the dropdown control on a
DataGridView? Currently, the user needs to click on it - I guess first to
select, then again on it to see the dropdown choices (sometimes this
requires several clicks). The CheckBox doesn't seem to have this issue - is
there something basic I'm missing in the setup on these columns?
DataGridView has property EditMode. Choose EditMode=EditOnEnter.
 
Back
Top