Re: [Gtk-sharp-list] Gtk# treeview and node icon
Try: complete_column.AddAttribute(pix_render, "pixbuf", 0); Best regards smso ___ Gtk-sharp-list maillist - Gtk-sharp-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/gtk-sharp-list
Re: [Gtk-sharp-list] Loop through all components in Window
You may need a recursive function which acts on Gtk.Container, e.g. public void parse_widget_tree(Gtk.Container parent) { foreach (Gtk.Widget child in parent.AllChildren) { if (child is Gtk.Container) { Gtk.Container container