I'm working on a project where I use a DataGridView, with some of the columns being DataGridViewComboBoxColumn.
My users want to edit these ComboBoxCell by pressing Down key.
I've actually two ideas on how doing it:
- Change the key that starts editing mode of these cells to Down key
- Check event Keydown on my DataGridView and if CurrentCell is a ComboBoxCell force the dropdown of this cell
But I didn't manage to find a way to do any of these.
So, Is there a way to achieve this? (Even if it doesn't use one of my ideas)