Ejemplo n.º 1
0
 public static void Add(IControlUpdating ctl, int key = 0)
 {
     controls.Add(new ControlUpdating()
     {
         Key     = key,
         Control = ctl
     });
 }
Ejemplo n.º 2
0
 public static void Remove(IControlUpdating ctl)
 {
     controls.Remove(ctl);
 }
Ejemplo n.º 3
0
 public static void Add(IControlUpdating ctl)
 {
     controls.Add(ctl);
 }