Question

Which interface tool would you recommend I use for creating user interfaces for GtkSharp applications?

I started with Glade, because it has wrappers in GtkSharp and allows for loading widgets from resource files. But then I found advise to use GtkBuilder instead of Glade, because Glade will be replaced by GtkBuilder in future releases of Gtk. Is it true? Furthermore, it seems for UI generation MonoDevelop uses Stetic which extends Glade. Which one should I use?

Was it helpful?

Solution

There is a difference between Glade (the application) and libglade (the library). Libglade is a library that has been replaced by GtkBuilder and so you should not use it. Glade the application is the UI designer, which can save GtkBuilder files, or libglade files for compatibility.

Stetic ties in with Mono and MonoDevelop a bit more, and so if you use MonoDevelop then you should probably use Stetic.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top