Habanero.Faces.Win.ListBoxWin.ListBoxObjectCollectionWin.Add C# (CSharp) Method

Add() public method

Adds an item to the list of items for a ListBox
public Add ( object item ) : void
item object An object representing the item to add to the collection
return void
            public void Add(object item)
            {
                _items.Add(item);
            }