Use chrome as browser in C#?

Viewed 109634

Is there a way to use Google Chrome (or Safari or Firefox) as the browser in a C# application? C# now uses Internet Explorer, and the website they want to use in this program doesn't support it.

9 Answers

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

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.

Related