Esempio n. 1
0
 public void AddAlternateControl(Control c)
 {
   if (alt == null)
     alt = new List<Control>();
   alt.Add(c);
 }
Esempio n. 2
0
 public void AddControl(Control nav)
 {
   if (Controls == null)
     Controls = new Dictionary<string, Control>();
   Controls[nav.name] = nav;
 }