Ejemplo n.º 1
0
 public static T FindControl <T>(Control seed, string id, bool traverse) where T : Control
 {
     return(ControlUtils.FindControl <T>(seed, id, traverse, (Control)null));
 }
Ejemplo n.º 2
0
 public static T FindControl <T>(Control seed) where T : Control
 {
     return(ControlUtils.FindControl(seed, typeof(T)) as T);
 }
Ejemplo n.º 3
0
 public static Control FindControl(Control seed, string id, bool traverse)
 {
     return(ControlUtils.FindControl(seed, id, traverse, (Control)null));
 }
Ejemplo n.º 4
0
 public static List <T> FindChildControls <T>(Control seed) where T : Control
 {
     return(ControlUtils.FindChildControls <T>(seed, false));
 }
Ejemplo n.º 5
0
 public static Control FindChildControl(Control seed, Type type)
 {
     return(ControlUtils.FindChildControl(seed, type, false));
 }
Ejemplo n.º 6
0
 public static Control FindChildControl(Control seed, Type type, bool shallow)
 {
     return(ControlUtils.FindChildControl(seed, type.FullName, shallow));
 }
Ejemplo n.º 7
0
 public static T FindChildControl <T>(Control seed, bool shallow) where T : Control
 {
     return(ControlUtils.FindChildControl(seed, typeof(T), shallow) as T);
 }
Ejemplo n.º 8
0
 public static Control FindControl(Control seed, string id)
 {
     return(ControlUtils.FindControl(seed, id, true, (Control)null));
 }
Ejemplo n.º 9
0
 public static Control FindControlByTypeName(Control seed, string typeFullName)
 {
     return(ControlUtils.FindControlByTypeName(seed, typeFullName, false, true, (Control)null));
 }
Ejemplo n.º 10
0
 public static Control FindControl(Control seed, Type type, bool shallow)
 {
     return(ControlUtils.FindControlByTypeName(seed, type.FullName, shallow, true, (Control)null));
 }
Ejemplo n.º 11
0
 public static T FindControl <T>(Control seed, string id) where T : Control
 {
     return(ControlUtils.FindControl <T>(seed, id, true, null));
 }