I'm trying to master the WebBrowser control for use in a data extraction application I'm building.
One of the requirements here is to be able to record user actions and play them back. While I'm having a little success, I'm confused about whether I'm going about this in the right way.
There seem to be code samples over the web that use the control in very different ways. Not to mention that there is a WinForms implementation, a WPF implementaion and a Silverlight implementation.
Can someone confirm:
Am I right in my findings so far that the WPF version of the control does not have the same functionality as the WinForms version - and is somewhat limited in terms of reacting to some events?
Why would someone choose to use the
mshtmlbased classes when using the control, when it seems that in WinForms at least, equivalent means of performing the same task exist in the Windows Forms classes?
Examples
Winforms Click Event Handle
void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
foreach (HtmlElement ele in uc_webBrowser.Document.All)
{
HtmlElementEventHandler eventhandler = new HtmlElementEventHandler(documentClickHandler);
if (ele.TagName.ToLower() == "a" || ele.TagName.ToLower() == "input" || ele.TagName.ToLower() == "select" || ele.TagName.ToLower() == "img")
{
ele.Click -= eventhandler;
ele.Click += eventhandler;
}
}
}
Click event handle using mshtml classes
void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
{
// Add doc null check otherwise the event handlers are assigned multiple times
// http://stackoverflow.com/questions/5400020/how-come-htmldocumentevent-onclick-fires-up-multiple-times
if (doc == null)
{
var eventHdlr = new mshtml.HTMLDocumentEvents2_onclickEventHandler(ClickEventHandler);
doc = (mshtml.HTMLDocument)webBrowser1.Document.DomDocument;
mshtml.HTMLDocumentEvents2_Event iEvent = (mshtml.HTMLDocumentEvents2_Event)doc;
iEvent.onclick -= eventHdlr;
iEvent.onclick += eventHdlr;
//iEvent.oncellchange += new HTMLDocumentEvents2_oncellchangeEventHandler(iEvent_oncellchange);
//iEvent.oncontrolselect += new HTMLDocumentEvents2_oncontrolselectEventHandler(iEvent_oncontrolselect);
//iEvent.onselectionchange += new HTMLDocumentEvents2_onselectionchangeEventHandler(iEvent_onselectionchange);
}
}
