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