Represents the collection of items in a ListBox. This is an adapter class which simply wraps the Windows ObjectCollection (ListBox.Items)
Inheritance: IListBoxObjectCollection
 public WinFormsListBoxAdapter(ListBox control)
     : base(control)
 {
     _lstBox = control;
     _objectCollection = new ListBoxWin.ListBoxObjectCollectionWin(_lstBox.Items);
     _selectedObjectCollection = new ListBoxWin.ListBoxSelectedObjectCollectionWin(_lstBox.SelectedItems);
     _lstBox.SelectedIndexChanged += RaiseSelectedIndexChanged;
     _lstBox.SelectedValueChanged += RaiseSelectedValueChanged;
 }