Reputation: 8187
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
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
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
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