I need a Gecko WebBrowser Control
I need a sample code or a link which explains how to use GECKO
If anyone has used Gecko, I could do with some advice
I need a Gecko WebBrowser Control
I need a sample code or a link which explains how to use GECKO
If anyone has used Gecko, I could do with some advice
Original tutorial with detailed snapshots can be found here.
To embed Gecko browser in your winform application, you need:
GeckoFx .net assembly file, which you can download from here. Also choose the correct version which matches the XulRunner version.
Unpack the GeckoFX-330.zip, you will get below files:
Drag a GeckoWebBrowser control to the winform designer, and let’s call it “browser”
In the form1.cs file, add below code:
The line Gecko.Xpcom.Initialize(@”..\xulrunner”); specifies where the xulrunner runtime is located. In this case, we put it into a folder (@”..\xulrunner”).
Now run the application, yeah~~~
GeckoFX is moved permanently here:
https://bitbucket.org/geckofx/
You should check out http://code.google.com/p/geckofx/. To get some code samples see the Wiki page.