Mako
Mako

Reputation: 1515

Handling Key Press Events in C#

I am developing an application in C#. Whenever someone presses keys like Ctrl + C or Ctrl + 1 etc, i want the application to capture them and perform some action based on the key combination that is pressed.

What is the way of achieving that ?

Upvotes: 3

Views: 3004

Answers (1)

Pranay Rana
Pranay Rana

Reputation: 176886

If you are looking for the windows application and want capture event on the windows form you can check this : How to capture shortcut keys in Visual Studio .NET

Upvotes: 3

Related Questions