Re: [Gtk-sharp-list] Gtk# treeview and node icon

2011-08-17 Thread smso
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

2007-08-25 Thread smso
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