6

我有一个项目涉及打开多个窗口客户端,然后在每个进程中模拟鼠标点击。我已经能够使用 Win32 API 和 SendMessage 成功地将消息发送到记事本的多个实例。对我有用的代码如下:

Process[] notepads = Process.GetProcessesByName("notepad");
            foreach (Process proc in notepads)
            {
                    IntPtr handle = proc.Handle;
                    IntPtr child = FindWindowEx(proc.MainWindowHandle, new IntPtr(0), "Edit", null);
                    if (child != null)
                    {
                        MessageBox.Show("Child was found, sending text");
                        SendMessage(child, 0x000C, 0, "test");
                    }
                }
            }

这会向我打开的每个记事本实例发送“测试”,无论有多少。如您所见,我正在遍历流程的每个实例,并简单地循环消息。一点都不难...

最终目标不是记事本,而是 Microsoft 扩展 Awesomium。我检索了窗口句柄,然后检索了子 (Awesomium) 类名称,即 Chrome_RenderWidgetHostHWND。从那里,我尝试通过重构 Sendmessage 中的变量类型来发送鼠标事件,以便组装和系统可读的 lParam。这是该代码:

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = false)]
        static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);

使用我发现的一些示例,我通过以下方式组装了 lParam:

int x = 834;
int y = 493;
IntPtr lParam = (IntPtr)((y << 16) | x);
IntPtr wParam = IntPtr.Zero;

我正在使用全局鼠标钩子来检测所有子窗口中的按下事件,当我点击按钮迭代整个过程并单击时,根本没有发送任何内容。我知道我在这里做了一些愚蠢的事情,导致鼠标点击无法发送。无论如何,这是我拥有的最终代码结构。任何建议或提示将不胜感激。谢谢。

  private void button2_Click(object sender, EventArgs e)
    {
        Process[] notepads = Process.GetProcessesByName("client");
        foreach (Process proc in notepads)
        {
                IntPtr handle = proc.Handle;
                string mine = Convert.ToString(proc);
                MessageBox.Show(mine);
                IntPtr child = FindWindowEx(proc.MainWindowHandle, new IntPtr(0), "Chrome_RenderWidgetHostHWND", null);
                if (child != null)
                {
                int x = 834;
                int y = 493;
                IntPtr lParam = (IntPtr)((y << 16) | x);
                IntPtr wParam = IntPtr.Zero;
                SendMessage(child, 0x201, wParam, lParam);
                SendMessage(child, 0x202, wParam, lParam);
                }
            }
        }
4

1 回答 1

2

或者您可以使用SendInput代替,它可以在存在鼠标钩子的情况下正常工作;您的解决方案(直接发布消息)不会。

更重要的是,如果进程拒绝激活(即,如果目标从 WM_MOUSEACTIVATE 返回 0),则不会发送 WM_LBUTTONDOWN。

于 2013-08-04T17:14:02.773 回答