Exemplo n.º 1
0
 public static T FindControl <T>(Control seed, string id) where T : Control
 {
     return(ControlUtils.FindControl <T>(seed, id, true, null));
 }
Exemplo n.º 2
0
 public static Control FindControl(Control seed, string id, bool traverse)
 {
     return(ControlUtils.FindControl(seed, id, traverse, null));
 }
Exemplo n.º 3
0
 public static T FindControl <T>(Control seed, bool shallow) where T : Control
 {
     return(ControlUtils.FindControl(seed, typeof(T), shallow) as T);
 }
Exemplo n.º 4
0
 public static Control FindControl(Control seed, string id)
 {
     return(ControlUtils.FindControl(seed, id, true, null));
 }
Exemplo n.º 5
0
 public static T FindControl <T>(Control seed) where T : Control
 {
     return(ControlUtils.FindControl(seed, typeof(T)) as T);
 }