library that allows embeding gecko in C# applications. Example Usage: // In MonoDevelop Project Options -> Run -> Configuration -> Default set the following envrionment variables. // set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux64 // set env var LD_PRELOAD to $(ProjectDir)/Firefox-Linux64/libgeckofix.so using System; using System.Windows.Forms; 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); } You will also have to install gtk-sharp3 deb package if not already installed. apt-get install gtk-sharp3
License
—
Deps
0
Install Size
—
Vulns
✓ 0
Published
Apr 8, 2024
$ dotnet add package Geckofx60.64No README available.