Jonas Gobel
Jonas Gobel

Reputation: 153

Embedding Firefox into a .NET control

I am beginner in c# and .net programing and I want to know whether i can use Mozilla Firefox as instance browser of webBrowser control, as by default webBrowser control use Internet Explorer.

Upvotes: 3

Views: 11402

Answers (3)

unloco
unloco

Reputation: 7320

Here's the Mozilla ActiveX control that you can use.

After you have installed it,
in your Visual Studio go to

 Toolbox>right-click>choose items>COM Components>Mozilla Browser Class

Upvotes: 0

Jacob Seleznev
Jacob Seleznev

Reputation: 8141

The Mozilla ActiveX Control uses the Gecko layout engine to deliver a fully programmable HTML and XML rendering control for ActiveX developers.

The API is similar to the Internet Explorer ActiveX control so it maintains a high degree of compatibility.

Gecko is the same engine that powers Mozilla, Mozilla Firefox

Upvotes: 6

Duncan Matheson
Duncan Matheson

Reputation: 1726

There's an old WinForms Gecko (Firefox) control somewhere, but the best non-IE .NET control you'll get is Awesomium, which is based on Chrome.

Upvotes: 2

Related Questions