我想知道是否单击了外部应用程序中的按钮。在我不得不自己点击之前,我使用了以下代码:
//Get window
IntPtr wrapUp = Win32API.FindWindowByText(Win32API.GetDesktopWindow(), "WRAP-UP");
if ((int)wrapUp > 0)
{
Win32API.SetFocus(wrapUp);
IntPtr okButton = Win32API.FindWindowByText(wrapUp, "OK");
Win32API.SetFocus(okButton);
Win32API.PostMessage(okButton, Win32API.BM_CLICK, 0, 0);
}
但现在我需要知道用户何时单击该按钮。有没有办法做到这一点?
我一直在搜索,我发现了几种从代码中执行点击的方法,但不是用于监听事件。