Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Capture and send keyboard / mouse input in C#

I am looking for a way to send and receive keyboard information regardless of what app has focus. I remember back in College seeing a presentation about an old Windows API that let you change the cursor position and send right clicks and such.

Besides User32.dll is there a way to do this with the .net framework?

like image 733
QueueHammer Avatar asked Dec 14 '22 03:12

QueueHammer


1 Answers

AFAIK, there's no way to capture the GLOBAL keyboard & mouse events. But there are a few articles on CodeProject which demonstrate the creation of .NET class wrappers for the same.

You can check them out here:

1) Processing Global Mouse and Keyboard Hooks in C#

2) Global Mouse and Keyboard Library

EDIT: BTW, I had created a SMALL keylogger in C# using the 1st library :)

like image 57
Kirtan Avatar answered Dec 15 '22 17:12

Kirtan