Пример #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, int i6)
 {
     Gtk.Container c = w.GetChild(i1, i2, i3, i4, i5) as Gtk.Container;
     return(c == null ? null : c.GetChild(i6));
 }
Пример #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, int i10, int i11)
 {
     Gtk.Container c = w.GetChild(i1, i2, i3, i4, i5, i6, i7, i8, i9, i10) as Gtk.Container;
     return(c == null ? null : c.GetChild(i11));
 }
Пример #3
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)
 {
     Gtk.Container c = w.GetChild(i1, i2) as Gtk.Container;
     return(c == null ? null : c.GetChild(i3));
 }