문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top