I had last used Mono (C#) with GTK, there is it possible to use ObjectAttributes.
Is there in D with GtkD and Glade an ObjectAttribute, e.g [UI] like in C#?
For example like:
[UI] Gtk.Button button1;
[UI] Gtk.Label label1;
I did not understand the D documentation about Attributes.
D has UDAs (User Defined Attributes).
Example from documentation:
Example of how they're used in cerealed:
Unfortunately, I couldn't find any mentions of UDAs in GtkD.