I need to make a shortcut key for open a new form in my application how I can do that task.
How can make shortcut keys in my windows form? Anonymous User 2487 07 Oct 2013 I need to make a shortcut key for open a new form in my application how I can do that task.
1. Create a demo project with 2 windows form
2. Then you can add the below code in your form1_keyDown event
e.Control : This mean hold the control key
e.KeyCode == Keys.N: This mean press the N key form your keyboard