除了Cursor
类移动光标,点击mouse_event
然后将光标移动到旧位置外,我找不到任何解决方案。我现在正在使用SendInput
功能,但仍然没有机会找到一个好的解决方案。有什么建议吗?
答案 0 :(得分:7)
您应该使用Win32 API。 使用user32.dll中的pInvoked SendMessage
然后阅读有关鼠标事件: Mouse Input on msdn
然后阅读:System events and Mouse Mess.......
还有很多信息: Info
答案 1 :(得分:4)
以下是Hooch建议的一个例子。
我创建了一个包含2个按钮的表单。单击第一个按钮时,第二个按钮的位置将被解析(屏幕显示)。然后检索此按钮的句柄。最后,SendMessage(...)(PInvoke)函数用于在不移动鼠标的情况下发送单击事件。
public partial class Form1 : Form
{
[DllImport("user32.dll")]
private static extern IntPtr SendMessage(IntPtr hWnd, int Msg,
IntPtr wParam, IntPtr lParam);
[DllImport("user32.dll", EntryPoint = "WindowFromPoint",
CharSet = CharSet.Auto, ExactSpelling = true)]
public static extern IntPtr WindowFromPoint(Point point);
private const int BM_CLICK = 0x00F5;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
// Specify the point you want to click
var screenPoint = this.PointToScreen(new Point(button2.Left,
button2.Top));
// Get a handle
var handle = WindowFromPoint(screenPoint);
// Send the click message
if (handle != IntPtr.Zero)
{
SendMessage( handle, BM_CLICK, IntPtr.Zero, IntPtr.Zero);
}
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("Hi", "There");
}
}