2011-11-25 74 views
32

我想要做的是操纵鼠标。这对于我自己的目的将是一个简单的宏。所以它会将我的鼠标移动到屏幕上的某个位置,然后像点击某个间隔一样点击。如何在屏幕上的某个位置模拟鼠标点击?

+1

Would [this](http://stackoverflow.com/questions/8242409/simulate-mouse-clicks-at-a-certain-position-on-inactive-window-in-c-sharp/8242484#8242484)成为你需要的东西?另外,正如有人在评论中提出的建议,您可能想使用UIAutomation。 – Nasreddine

+1

感谢工作:) – MonsterMMORPG

+1

好吧不太好工作。我如何设置点击持续时间。像100毫秒保持按下鼠标 – MonsterMMORPG

回答

43

这里是正在使用的非托管函数来模拟鼠标点击代码:

//This is a replacement for Cursor.Position in WinForms 
[System.Runtime.InteropServices.DllImport("user32.dll")] 
static extern bool SetCursorPos(int x, int y); 

[System.Runtime.InteropServices.DllImport("user32.dll")] 
public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo); 

public const int MOUSEEVENTF_LEFTDOWN = 0x02; 
public const int MOUSEEVENTF_LEFTUP = 0x04; 

//This simulates a left mouse click 
public static void LeftMouseClick(int xpos, int ypos) 
{ 
    SetCursorPos(xpos, ypos); 
    mouse_event(MOUSEEVENTF_LEFTDOWN, xpos, ypos, 0, 0); 
    mouse_event(MOUSEEVENTF_LEFTUP, xpos, ypos, 0, 0); 
} 

要在特定的时间内按住鼠标,您可以Sleep()正在执行该功能,例如线程:

mouse_event(MOUSEEVENTF_LEFTDOWN, xpos, ypos, 0, 0); 
System.Threading.Thread.Sleep(1000); 
mouse_event(MOUSEEVENTF_LEFTUP, xpos, ypos, 0, 0); 

上面的代码将保持加压1秒钟鼠标除非用户按压释放鼠标按钮。 此外,请确保不要在主UI线程上执行此代码,因为它会导致挂起

+1

工作这是比我在这里看到的其他解决方案更简单。谢谢 – Yablargo

+0

此代码可以正常工作,将指针指向屏幕上的所需坐标,但由于某种原因,点击对我无效。任何想法为什么? – john

+0

在这里您可以获得其他鼠标按钮的代码:https://msdn.microsoft.com/en-us/library/windows/desktop/ms646260(v=vs.85).aspx – Li3ro

7

您可以按XY位置移动。下面的例子:

windows.Forms.Cursor.Position = New System.Drawing.Point(Button1.Location.X + Me.Location.X + 50, Button1.Location.Y + Me.Location.Y + 30) 

要点击,可以使用下面的代码:

using System.Runtime.InteropServices; 

private const UInt32 MOUSEEVENTF_LEFTDOWN = 0x0002; 
private const UInt32 MOUSEEVENTF_LEFTUP = 0x0004; 
[DllImport("user32.dll")] 
    private static extern void mouse_event(uint dwFlags, uint dx, uint dy, uint dwData,    uint dwExtraInf); 
private void btnSet_Click(object sender, EventArgs e) 
    { 
     int x = Convert.ToInt16(txtX.Text);//set x position 
     int y = Convert.ToInt16(txtY.Text);//set y position 
     Cursor.Position = new Point(x, y); 
     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);//make left button down 
     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);//make left button up 
    } 

感谢JOHNYKUTTY

+1

问题是在WPF,而不是形式。 – Vlad

+1

不起作用:windows.Forms.Cursor.Position =新的System.Drawing.Point(Button1.Location.X + Me.Location.X + 50,Button1.Location.Y + Me.Location.Y + 30)。我也尝试过这种形式没有提到不会在wpf – MonsterMMORPG