I am building a tool using C#. It's a Windows application. I have one text box on a form, and I want to assign focus to that text box when the user presses Ctrl + F or Ctrl + S.
How do I do this?
|
I am building a tool using C#. It's a Windows application. I have one text box on a form, and I want to assign focus to that text box when the user presses Ctrl + F or Ctrl + S. How do I do this?
| ||||
|
feedback
|
|
One way is to override the ProcessCMDKey event.
EDIT: Alternatively you can use the keydown event - see How to capture shortcut keys in Visual Studio .NET. | ||||
|
feedback
|
|
Add an event that catches a key press on the form, analyse the key press and see if it matches one of your shortcut keys and then assign focus. | |||
|
feedback
|