How to simulate mouse click with the WebBrowser control

前端 未结 1 453
后悔当初
后悔当初 2020-12-11 03:42

Using the WebBrowser control I am able to call an event when the mouse button is manually clicked, but I want the program to do the click itself, not do somethi

相关标签:
1条回答
  • 2020-12-11 04:33

    Quite easily, simply use:

    button.InvokeMember("click");
    
    0 讨论(0)
提交回复
热议问题