Hi
I've read that there is a way to embed an open-source browser like chrome or Firefox in a Windows form application instead of the inbuilt Web Browser in .Net.
But I don't know how to do this.
Could any one please give me an example of how to do this?
Thank you very much.
解决方案Chromium Embedded Framework[^]
CefSharp[^]
CefGlue[^]
All those sites have example projects and good documentation on using the Chromium framework in a .NET application.
Assuming that you merely want to use other browsers, not add Chrome or Firefox to the C# Web Browser control...here are some helpful links:
CefSharp Embedded Chromium for .NET: https://github.com/chillitom/CefSharp
Embedding Gecko (firefox engine): https://developer.mozilla.org/en-US/docs/Gecko/Embedding_Mozilla/FAQ/Embedding_Gecko
Hi,
To embed Chrome, use WebKit.NET:
http://webkitdotnet.sourceforge.net/[^]
To embed Firefox, use GeckoFX:
http://code.google.com/p/geckofx/[^]