Ejemplo n.º 1
0
 ///<summary>
 /// Constructor for <see cref="ListBoxSelectorVWG"/>
 ///</summary>
 ///<param name="controlFactory"></param>
 public ListBoxSelectorVWG(IControlFactory controlFactory)
 {
     if (controlFactory == null)
     {
         throw new ArgumentNullException("controlFactory");
     }
     _manager = new ListBoxCollectionManager(this);
     _manager.BusinessObjectSelected += delegate { FireBusinessObjectSelected(); };
 }
 ///<summary>
 /// Constructor for <see cref="ListBoxSelectorVWG"/>
 ///</summary>
 ///<param name="controlFactory"></param>
 public ListBoxSelectorVWG(IControlFactory controlFactory)
 {
     if (controlFactory == null) throw new ArgumentNullException("controlFactory");
     _manager = new ListBoxCollectionManager(this);
     _manager.BusinessObjectSelected += delegate { FireBusinessObjectSelected(); };
 }