Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use chrome as browser in C#?

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.

like image 923
Timo Avatar asked Jan 26 '10 18:01

Timo


People also ask

Is Google Chrome written in C?

Google Chrome browser is also written in C++, Assembly and Python. It's currently the most popular browser in the world with between 60 to 70% usage share. Many Google tools is based on C++ (for example Google Earth).

Does Google Chrome use C++?

Google Chrome and Microsoft are major users of and contributors to the fast programming language C++. Google Chrome can't just rip and replace Chromium's existing C++ code with memory-safer Rust.

How do I enable Native Client in Chrome?

If you haven't already done so, enable the Native Client flag in Google Chrome. Type about:flags in the Chrome address bar, scroll down to “Native Client”, click the “Enable” link, scroll down to the bottom of the page, and click the “Relaunch Now” button (all browser windows will restart).


2 Answers

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

like image 106
Reed Copsey Avatar answered Sep 22 '22 07:09

Reed Copsey


You can use GeckoFX to embed firefox

like image 26
Joel Martinez Avatar answered Sep 21 '22 07:09

Joel Martinez