vote up 1 vote down star

How to Set mouse cursor position to a specified point on screen in C#?

am i must hacke the motherboard buffer that receive the mouse and keyboard coordinates and presses ???

is there another one to do clicks or i am imagine ???

flag

1  
The question that jumps immediately to mind is 'why'? – Matthew Scharley Sep 8 at 5:47
to do something in my head. why? – mavric Sep 8 at 5:49

1 Answer

vote up 2 vote down check

The following will set the mouse position and perform a click:

public static void ClickSomePoint() {
    // Set the cursor position
    System.Windows.Forms.Cursor.Position = new Point(20, 35);

    DoClickMouse(0x2); // Left mouse button down
    DoClickMouse(0x4); // Left mouse button up
}   

static void DoClickMouse(int mouseButton) {
    var input = new INPUT() {
        dwType = 0, // Mouse input
        mi = new MOUSEINPUT() { dwFlags = mouseButton }
    };

    if (SendInput(1, input, Marshal.SizeOf(input)) == 0) { 
        throw new Exception();
    }
}
[StructLayout(LayoutKind.Sequential)]
struct MOUSEINPUT {
    int dx;
    int dy;
    int mouseData;
    public int dwFlags;
    int time;
    IntPtr dwExtraInfo;
}   
struct INPUT {
    public uint dwType;
    public MOUSEINPUT mi;
}   
[DllImport("user32.dll", SetLastError=true)]
static extern uint SendInput(uint cInputs, INPUT input, int size);

Just keep in mind that this could be extremely annoying for a user.

:)


If you want to click a button on your form you can use the 'PerformClick()' method.

link|flag
is there another one to do clicks or i am imagine ??? – mavric Sep 8 at 6:09
or maybe not. is there is something to do for this ??? – mavric Sep 8 at 6:10
but if i want to click anything in the screen is there something for that or my imagination will end here ? – mavric Sep 8 at 6:16
the Exception in the if scope in every time happen. what i could do ? – mavric Sep 8 at 11:39

Your Answer

Get an OpenID
or

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