views:

274

answers:

4

Hello

Is there a way to use Google Chrome(safari or firefox may also) as browser in a C# application. This is now internet explorer, and the website they want to use in this program don't support it....

Tom

+2  A: 

You can use GeckoFX to embed firefox

Joel Martinez
Why was this voted down? It's a perfectly valid answer.
Joel Mueller
+11  A: 

You can use WebKit.NET. This is a C# wrapper for WebKit, which is the rendering engine used by Chrome.

Reed Copsey
thank you. this i am going to user. webkit is a good alternative!!!
Tom
+6  A: 

I don't know of any full Chrome component, but you could use WebKit, which is the rendering engine that Chrome uses. The Mono project made WebKit Sharp, which might work for you.

Travis Gockel
+2  A: 

Try this: http://code.google.com/p/geckofx/

iamwill