I have "multiline" (wordwrapping) textbox columns in a DataGridView. It would be great to be able to edit them as normal TextBoxes, that is, when I press down arrow, I want the caret to go down one line within the textbox, I don't want it to jump to the next row, as it normally does. Likewise, I want that pressing enter creates a new line within the textbox cell, but it instead finishes editing.
Otherwise said: I want to override normal behaviour of some keypresses (or keydowns), so that user can edit a textbox cell as if it were a normal textbox, and navigate inside it with arrows and create new lines with enter.
I tried manipulating keydown events in DataGridView, but it didn't work.
Thank you for any ideas or comments.
when I press down arrow, the caret goes down one line within the textbox, it does not jump to the next row- Is this expected or not ? – Angshuman Agarwal Jun 19 '12 at 20:52MS-EXCEL? Just open a spreadsheet and try.If you HIT F2 on a cell, then it goes into Editing Mode. And, to go to a new line whle editing you have to use ALT+Enter.But, just pressing theEnterkeyends the editingand moves to the new row / cell below. So, just asking -- why do you want to move away from standard functionality ? – Angshuman Agarwal Jun 20 '12 at 10:34