Info
Version: | 45.0.34 |
Author(s): | geckofx |
Last Update: | Saturday, January 6, 2018 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://bitbucket.org/geckofx/ |
NuGet Url: | https://www.nuget.org/packages/Geckofx45 |
Install
Install-Package Geckofx45
dotnet add package Geckofx45
paket add Geckofx45
Geckofx45 Download (Unzip the "nupkg" after downloading)
Dependencies
3 packages depend on this package.
Tags
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();
f.Controls.Add(geckoWebBrowser);
geckoWebBrowser.Navigate("www.google.com");
Application.Run(f);
}.