If you use Visual Studio to debug code, you can debug this situation by adding a condition to your breakpoint.
To do this, right-click the breakpoint icon to the left of the code statement and click Condition... An example of a condition that will apply to your situation:
e.Control && e.KeyCode == Keys.Up
Now you can debug input events with multiple keys, such as Ctrl + โ without the need to change any code.
source share