Click here to Skip to main content
15,860,972 members
Articles / Desktop Programming / Win32
Article

Global Mouse and Keyboard Library

Rate me:
Please Sign up or sign in to vote.
4.94/5 (132 votes)
8 Aug 2008CPOL3 min read 536.1K   27.3K   322   206
Easy-to-use library with global mouse and keyboard hooks and simulators.

Image 1

Introduction

This article explains how to use the mouse and keyboard library that I have created. This library consists of two things: global mouse and keyboard hooks, and global mouse and keyboard simulators.

The global hooks contain a set of events that follow the .NET event model, so they should be very simple to use if you've done anything with events before.

The simulators will actually simulate mouse movements, clicks, keyboard presses, etc. This can be useful for macro recording (which is one of the sample projects), and of course, messing with your friends. :)

Background

I've found a lot of hook and simulator code out there, but a lot of it was not very organized, and a bit hard to use. The goal here is to make a very simple and easy-to-use library for mouse and keyboard operations not natively supported by .NET.

Global Hooks

This section will explain how to use the global hooks which can capture mouse and keyboard events from any application. These events are very similar to the ones that appear on Windows controls, so they should look familiar.

Using the mouse hook:

C#
// Create the mouse hook
MouseHook mouseHook = new MouseHook();

// Capture the events
mouseHook.MouseMove += new MouseEventHandler(mouseHook_MouseMove);
mouseHook.MouseDown += new MouseEventHandler(mouseHook_MouseDown);
mouseHook.MouseUp += new MouseEventHandler(mouseHook_MouseUp);
mouseHook.MouseWheel += new MouseEventHandler(mouseHook_MouseWheel); 

// Start watching for mouse events
mouseHook.Start();

...

// Stop watching (don't forget to do this before closing application!)
mouseHook.Stop();

Using the keyboard hook:

C#
// Create the keyboard hook
KeyboardHook keyboardHook = new KeyboardHook();

// Capture the events
keyboardHook.KeyDown += new KeyEventHandler(keyboardHook_KeyDown);
keyboardHook.KeyUp += new KeyEventHandler(keyboardHook_KeyUp);
keyboardHook.KeyPress += new KeyPressEventHandler(keyboardHook_KeyPress);

// Start watching for keyboard events
keyboardHook.Start();

...

// Stop watching (don't forget to do this before closing application!)
keyboardHook.Stop();

Note: When you are setting the events, Visual Studio will name and create a blank method for you. You only need to type this much on the event ...

C#
keyboardHook.KeyDown +=

...and then hit TAB two times. Visual Studio will finish the rest of the line, and will go out and create the blank method for you. This is a nice feature, and saves a lot of time; use it!

Simulators

This section will explain how to use the the mouse and keyboard simulators to simulate mouse clicks and keyboard key presses. Both the KeyboardSimulator and MouseSimulator classes are static, so they are pretty simple to use.

Simulating mouse events:

C#
// Press Left Mouse Button Down
MouseSimulator.MouseDown(MouseButton.Left);

// Let Left Mouse Button Up
MouseSimulator.MouseUp(MouseButton.Left);

// Press down and Let up Left Mouse Button
// (equivalent to two lines above)
MouseSimulator.Click(MouseButton.Left);

// Double click Left Mouse button
// (equivalent to two Click()s above)
MouseSimulator.DoubleClick(MouseButton.Left);

The code above is used to simulate pressing and letting up a certain mouse button. The one parameter is just an enumeration of the three possible mouse buttons: Left, Right, and Middle.

Moving the mouse position:

C#
// Move mouse cursor to Top Left of screen
MouseSimulator.X = 0;
MouseSimulator.Y = 0;

// Move the mouse cursor to the right by 20 pixels
MouseSimulator.X += 20;

The X and Y above are properties. You can use them to get the current position of the mouse cursor, or you can set them to move the mouse cursor to a new location.

Keyboard simulators:

C#
// Press the A Key Down
KeyboardSimulator.KeyDown(Keys.A);

// Let the A Key back up
KeyboardSimulator.KeyUp(Keys.A);

// Press A down, and let up (same as two above)
KeyboardSimulator.KeyPress(Keys.A);

The code above will simulate keyboard key presses. You can press a key down (first line), which doesn't let it up yet. The second line, KeyUp, will release a key that has been pressed down, the third line with do both steps in one shot.

I also included some standard keyboard shortcuts. These can all be done with the code above, but it simplifies it a bit, and makes the code a bit more readable and obvious.

C#
// Simulate (Ctrl + C) shortcut, which is copy for most applications
KeyboardSimulator.SimulateStandardShortcut(StandardShortcut.Copy);

// This does the same as above
KeyboardSimulator.KeyDown(Keys.Control);
KeyboardSimulator.KeyPress(Keys.C);
KeyboardSimulator.KeyUp(Keys.Control);

The code above does the exact same thing twice, except the first is a bit shorter and more obvious.

A Sample Application: Global Macro Recorder

Image 2

A macro recorder is a great example for this library, since we can use the hooks to record the macro, and the simulators to play back.

Check out the Macro project in the downloadable source code.

Future Additions / Revisions

I'm going to edit and add to this library over time as I get feedback. If you think something should be added, changed, or find a problem, please post in the comments section, and I'll do what I can. Thanks. :)

Revision History

  • 7/23/08: Released first version in three versions of .NET.
  • 7/28/08: Added the Application.ApplicationExit event to make sure hooks stop.
  • 8/8/08: Got rid of the debug code in the Macro example, added the MouseWheel method to the MouseSimulator class, and got rid of the duplicate MousePoint class used in MouseSimulator.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer GEA Refrigeration
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionSaving mouse keyboard events into file - and reply them later Pin
Member 1109463622-Sep-14 19:32
Member 1109463622-Sep-14 19:32 
AnswerRe: Saving mouse keyboard events into file - and reply them later Pin
Member 1194845721-Sep-15 7:34
Member 1194845721-Sep-15 7:34 
GeneralRe: Saving mouse keyboard events into file - and reply them later Pin
ImmadiDeepthi27-Sep-15 19:00
ImmadiDeepthi27-Sep-15 19:00 
QuestionKeyDown's behavior is the same as KeyPress! Pin
Hashem AL-Rifai22-Jul-14 22:54
Hashem AL-Rifai22-Jul-14 22:54 
SuggestionMessage Closed Pin
26-Oct-14 7:37
Member 1118133526-Oct-14 7:37 
QuestionRecording in host application Pin
caesarh12-May-14 3:49
caesarh12-May-14 3:49 
Questionx86 and x64 Problem Pin
gerd8723-Mar-14 4:57
gerd8723-Mar-14 4:57 
QuestionThis cannot work in a console Pin
Spaun199115-Jan-14 6:52
Spaun199115-Jan-14 6:52 
This cannot work in a console, why ?
QuestionGreat job. Pin
sunil13487-Jan-14 19:32
sunil13487-Jan-14 19:32 
GeneralSave / load macro - a solution Pin
_Steba_1-Nov-13 5:02
professional_Steba_1-Nov-13 5:02 
GeneralRe: Save / load macro - a solution Pin
walter iermano23-Apr-15 12:16
walter iermano23-Apr-15 12:16 
GeneralRe: Save / load macro - a solution Pin
Member 1006072721-Mar-17 22:17
Member 1006072721-Mar-17 22:17 
QuestionSHIFT+END Not work Pin
Member 46159775-Oct-13 3:09
Member 46159775-Oct-13 3:09 
QuestionNot working in .NET 4 ! Pin
Shashi_zen18-Sep-13 21:53
Shashi_zen18-Sep-13 21:53 
AnswerRe: Not working in .NET 4 ! Pin
Shashi_zen21-Sep-13 1:57
Shashi_zen21-Sep-13 1:57 
AnswerRe: Not working in .NET 4 ! Pin
Dhanabhon20-Mar-14 19:09
professionalDhanabhon20-Mar-14 19:09 
GeneralRe: Not working in .NET 4 ! Pin
Member 1050464125-Jul-15 22:05
Member 1050464125-Jul-15 22:05 
GeneralRe: Not working in .NET 4 ! Pin
Member 1182556213-Aug-16 19:47
Member 1182556213-Aug-16 19:47 
Questionplay macro in game Pin
ragil.sa21-Aug-13 7:13
ragil.sa21-Aug-13 7:13 
QuestionHow to convert char to it's corresponding KeyCode value? Pin
HallurA23-Jun-13 14:26
HallurA23-Jun-13 14:26 
QuestionReplication Does not work Pin
Member 99274632-Apr-13 3:11
Member 99274632-Apr-13 3:11 
Questionmouse control Pin
qazxqazx11-Mar-13 6:30
qazxqazx11-Mar-13 6:30 
QuestionMouseKeyboardLibrary program Pin
rajatdas20058-Jan-13 2:01
rajatdas20058-Jan-13 2:01 
QuestionShif+Left Pin
Member 967060910-Dec-12 2:33
Member 967060910-Dec-12 2:33 
GeneralMy vote of 5 Pin
Đinh Công Thắng3-Dec-12 14:31
Đinh Công Thắng3-Dec-12 14:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.