views:

16

answers:

0

I am writing an winform application that has a application menu of Ctrl-E to edit the currently selected row in a DataGrid. At any point the user can also use Ctrl-I to insert a new row.

It appears that Ctrl-E is a custom key in BaseTextBox (as are Ctrl+K, Ctrl+L and Ctrl+R)

http://social.msdn.microsoft.com/Forums/en/csharplanguage/thread/941c9759-5531-49fe-9ebb-7fc6d812b0fd

Does anyone know how to prevent this from happening? I've looked into the DataGridTextBox control as well and there doesn't appear to be many answers out there.