This is an old thread, but you can do it to complete it ...
use System.Runtime.InteropServices; [DllImport("user32.dll")] static extern bool SetCursorPos(int X, int Y);
then in the method any position you want, for example.
SetCursorPos(500, 500);
source share