Search code examples
c#.netbrowsergoogle-chrome-frame

Google Chrome Frame in C#?


How can I use Google Chrome Frame in .NET's WebBrowser control? I know I have to have:

<meta http-equiv="X-UA-Compatible" content="chrome=1">

In the beginning of the page that I'm loading, but how to do this?


Solution

  • Google Chrome Frame is an Internet Explorer plugin, so WebBrowser Control isn't supported (since the control itself doens't support plugins).

    At this official thread is being suggested an alternative approach using Chrome Frame ActiveX itself inside your application, but I never tried it.