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
WebControlwhere you had a GUI to implement by dropping it on aFormor wherever whereas aWebViewbasically does away with the GUI overhead.I would conclude that under the hood
WebControlactually usesWebViewand renders the view to the control surface etc.