Can anyone describe what are the main differences between using WebView and WebControl in Awesomium? In which scenario it's better to use WebView and in which WebControl? What are the pros and cons of using each of these two in WinForms?
Thanks for clarification,
As described on their wiki:
Basically you'd use
WebControl
where you had a GUI to implement by dropping it on aForm
or wherever whereas aWebView
basically does away with the GUI overhead.I would conclude that under the hood
WebControl
actually usesWebView
and renders the view to the control surface etc.