I want to be able to get the current location of the mouse pointer, relative from where my form window is. So if I would put my mouse on the top left of the form, it would give me the x and y values of x=0 and y=0, while the form itself might be in the middle of the screen.

Also I want to set the position of the mouse.

How can this be done in C#? I'm using a windows forms application.

link

feedback

2 Answers

up vote 3 down vote accepted

Obtain the screen coordinates by using Cursor.Position, then convert to window coordinates invoking PointToClient on the window.

link
This worked just fine, though I was hoping there was already a build-in function to do it – Pieter888 Nov 13 '09 at 10:16
feedback

Check out the Cursor.Position property

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.