views:

29

answers:

1

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?

+1  A: 

Find the HtmlElement for the checkbox, then call AttachEventHandler("change", handler).

SLaks