示例#1
0
 /// <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);
 }
示例#2
0
 /// <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);
 }