Sam
Sam

Reputation: 11

Replacing Latest .NET WebBrowser Control with a browser, like Firefox or Chrome

I am using Visual Studio C# found an ActiveX control but it looks like it's an old version.

I need:

Upvotes: 0

Views: 11102

Answers (4)

bh_earth0
bh_earth0

Reputation: 2818

SharpBrowser based on cefsharp . accidentally found it while browsing the cefsharp repos

http://github.com/sharpbrowser/SharpBrowser

Upvotes: 1

Anna Dolbina
Anna Dolbina

Reputation: 1110

DotNetBrowser can satisfy your needs.

This library provides Chromium-based WPF and WinForms components that can be embedded into your .NET application. The component supports HTML5, CSS, JavaScript, DOM access, DOM events and even calling JavaScript from C# and vice versa.

DotNetBrowser API also provides basic browser functions like loading URLs and HTML, reloading page, navigating back and forward, working with cookies, etc. Actually, all its functions are perfectly described in the product's Knowledge Base.

The control is commercial,but there are free academic and open-source licenses.

Upvotes: 0

VDN
VDN

Reputation: 737

take a look at GeckoFx https://bitbucket.org/geckofx/. I was using it about 2 year ago and it was pretty easy to use. It's free and not "dead", meaning it is being keeped up to date.

Upvotes: 5

Mark
Mark

Reputation: 1371

Take a look at CefSharp: https://github.com/cefsharp/CefSharp

CefSharp lets you embed Chromium in .NET apps. It is a lightweight .NET wrapper around the Chromium Embedded Framework (CEF) by Marshall A. Greenblatt. About 30% of the bindings are written in C++/CLI with the majority of code here is C#. It can be used from C# or VB, or any other CLR language. CefSharp provides both WPF and WinForms web browser control implementations.

Upvotes: 4

Related Questions