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