mono / gtk-sharp

Gtk# is a Mono/.NET binding to the cross platform Gtk+ GUI toolkit and the foundation of most GUI apps built with Mono
http://www.mono-project.com/GtkSharp
Other
424 stars 140 forks source link

Not all widget properties can be set from VBnet #255

Open Xoristzatziki opened 5 years ago

Xoristzatziki commented 5 years ago

Properties found in a glade file cannot be set through monoBasic (or VBnet, whichever is appropriate). This is true at least for the GtkButton. In a glade file a GtkButton may have: <property name="label">gtk-quit</property> <property name="use_stock">True</property> <property name="always_show_image">True</property> which cannot be set in VBnet since (with the exception of the Label property) they do not exist as "member" functions. In addition a "set_property" (or something like this "Property_set" or alike) also does not exist as "member" function.

Sorry if this is not the place to report this problem.