Normally when pressing the TAB key you change the focus to the next control in the given tab order. I would like to prevent that and have the TAB key do something else. In my case I'd like to change focus from a combobox to a completely different control. I can't do this by setting the tab order. I need to do this programatically. Any idea how? It seems like the KeyDown and KeyPress events can't handle TAB key correctly. Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Override |
|||
|
|
|
You can try this code on your KeyDown event:
If the button clicked is Tab, then do any custom logic you want, then call SuppressKeyPress to stop the KeyPress event from firing and invoking the normal Tab logic for you. |
|||
|
|
|
Override the control's LostFocus event see link below for examples: http://msdn.microsoft.com/en-us/library/system.windows.forms.control.lostfocus.aspx |
|||
|
|
|
Since I am building a UserControl, I ended up using the http://msdn.microsoft.com/en-us/library/system.windows.forms.control.previewkeydown.aspx |
|||
|
|