Haim Bender
Haim Bender

Reputation: 8187

How can I open a google chrome control in C#

I know there is a way to add a IE control, how do you add a chrome control...? Is it even possible right now?

I'm need this because of the fast javascript VM found in chrome.

Upvotes: 3

Views: 8026

Answers (4)

Neil N
Neil N

Reputation: 25258

If you want to use it yourself... Chrome is based on the open source webkit rendering engine. Good luck though, I'm pretty sure it's not managed code friendly.

Upvotes: 1

Arlen Beiler
Arlen Beiler

Reputation: 15876

Check this out: Use chrome as browser in C#?

Upvotes: 4

Gabe
Gabe

Reputation:

I searched around and I don't think Google Chrome registers itself as a Windows COM+ component. I think you're out of luck.

Upvotes: 2

Jakub Kotrla
Jakub Kotrla

Reputation: 257

IE control is actually ActiveX component - so it can be wrapped in .Net component. It is not real IE, it's mainly only its rendering engine (HTML+CSS+JS) plus web client (HTTP and some more protocols) Control itself has no menu, bookmarks etc. Chrome is full featured browser. So you should be asking for WebKit (rendering engine chrome use, developed by Safari's guys) control.

There is an outdated Mozilla ActiveX (actually Gecko rendering engine). It's much more complicated to use and only available as ActiveX, no native .Net/C#.

Upvotes: 1

Related Questions