示例#1
0
 // comfort function to easily access a specific c widget in a nested widget children tree
 public static Gtk.Widget GetChild(this Gtk.Widget w, int i1, int i2, int i3, int i4, int i5)
 {
     Gtk.Container c = w.GetChild(i1, i2, i3, i4) as Gtk.Container;
     return(c == null ? null : c.GetChild(i5));
 }
示例#2
0
 // comfort function to easily access a specific c widget in a nested widget children tree
 public static Gtk.Widget GetChild(this Gtk.Widget w, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9)
 {
     Gtk.Container c = w.GetChild(i1, i2, i3, i4, i5, i6, i7, i8) as Gtk.Container;
     return(c == null ? null : c.GetChild(i9));
 }
示例#3
0
 // comfort function to easily access a specific child widget in a nested widget children tree
 public static Gtk.Widget GetChild(this Gtk.Widget w, int i1, int i2)
 {
     Gtk.Container c = w.GetChild(i1) as Gtk.Container;
     return(c == null ? null : c.GetChild(i2));
 }