In my winforms application, I have a WebBrowser control which displays a page. When the user checks/unchecks a checkbox, I want to detect that, and have an event do some processing within my winforms app.
Any idea if this is possible?
In my winforms application, I have a WebBrowser control which displays a page. When the user checks/unchecks a checkbox, I want to detect that, and have an event do some processing within my winforms app.
Any idea if this is possible?
Find the HtmlElement
for the checkbox, then call AttachEventHandler("change", handler)
.