Table of Contents

Class ListBoxItems

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

Represents a collection of items within a list box.

public class ListBoxItems : IList<object>, ICollection<object>, IReadOnlyList<object>, IReadOnlyCollection<object>, IEnumerable<object>, IList, ICollection, IEnumerable
Inheritance
ListBoxItems
Implements

Remarks

This class provides list-like behavior and supports multiple collection interfaces. It enables item management, enumeration, and indexing within a structured list.

Constructors

ListBoxItems(BaseCollection<ListControlItem>)

Initializes a new instance of the ListBoxItems class.

Properties

Count
IsFixedSize
IsReadOnly
IsSynchronized
this[int]
SyncRoot

Methods

Add(object)
AddRange(IEnumerable<object>)

Adds multiple items to the collection.

Clear()
Contains(object)
CopyTo(object[], int)
~ListBoxItems()

Finalizes an instance of the ListBoxItems class.

GetEnumerator()
IndexOf(object)
Insert(int, object)
Remove(object)
RemoveAt(int)

Events

CollectionChanged

Occurs when the collection's contents change.

PropertyChanged

Occurs when a property value changes.

See Also