/// <summary> /// Add a WizardUserControl to the Items collection /// </summary> /// <param name="userControl"></param> public void AddWizardItem(WizardUserControl userControl) { if (_items == null) { _items = new Collection <WizardUserControl>(); } _items.Add(userControl); }
/// <summary> /// Add a WizardUserControl to the Items collection /// </summary> /// <param name="userControl"></param> public void AddWizardItem(WizardUserControl userControl) { if (_items == null) { _items = new Collection<WizardUserControl>(); } _items.Add(userControl); }