On 23 May 2006 08:09:32 -0700, Kereoz <[EMAIL PROTECTED]> wrote:
The GTK Gecko widget is like the other widgets. You can use it if you compile with the good flags.
Actually, in the context of Mono, you need a C# example such as http://docs.gotmono.net/display.aspx?url=ecma%3a%2f%2fgo%3flink%3dT%253aGecko.WebControl If you want to use glade, see http://mono-project.com/GtkSharpBeginnersGuide for an introduction. I don't think you can use Gecko.WebControl from Glade, but you could manually add it to a glade layout from code - just create a Bin or something for designing. At runtime, (if you have bound the Bin as local variable bin1), after glade has built the window for you you can do something like WebControl wc = new WebControl (); wc.Show (); bin1.add (wc); Hope that helps! Michael _______________________________________________ dev-embedding mailing list [email protected] https://lists.mozilla.org/listinfo/dev-embedding
