Info
| Version: | 45.0.37 |
| Author(s): | geckofx |
| Last Update: | Thursday, August 30, 2018 |
| .NET Fiddle: | Create the first Fiddle |
| Project Url: | https://bitbucket.org/geckofx/ |
| NuGet Url: | https://www.nuget.org/packages/Geckofx45.32.Linux |
Install
Install-Package Geckofx45.32.Linux
dotnet add package Geckofx45.32.Linux
paket add Geckofx45.32.Linux
Geckofx45.32.Linux Download (Unzip the "nupkg" after downloading)
Dependencies
1 package depend on this package.
Tags
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox
// set env var LD_PRELOAD to $(ProjectDir)/Firefox/libgeckofix.so
// add using Gecko
[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);
}.