library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information
library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information
library that allows embeding gecko in C# applications.
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)
{...
More information
library that allows embeding gecko in C# applications.
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)
{...
More information
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...
More information
library that allows embeding gecko in C# applications.
Example Usage:
[STAThread]
static void Main(string[] args)
{
Xpcom.Initialize("Firefox64");
var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill};
Form f = new Form();...
More information
library that allows embeding gecko in C# applications.
Depends on Gtk3
ubuntu packages: libgtk-3-0, libgtk3.0-cil
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux32
// set env var LD_PRELOAD to $(ProjectDir)/Firefox-Linux32/libgeckofix.so
// add using Gecko...
More information
library that allows embeding gecko in C# applications.
Depends on Gtk3
ubuntu packages: libgtk-3-0, libgtk3.0-cil
Example Usage:
// set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux64
// set env var LD_PRELOAD to $(ProjectDir)/Firefox-Linux64/libgeckofix.so
// add using Gecko...
More information