Interface IListControlItems<T>
Contains methods and properties to work with the items of ListControl descendants.
public interface IListControlItems<T> : IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable, INotifyPropertyChanged, INotifyCollectionChanged
Type Parameters
T
Properties
- RangeOpInProgress
Returns true if AddRange(IEnumerable<T>) is being executed at the moment.
Methods
- AddRange(IEnumerable<T>)
Adds the elements of the specified IEnumerable<T> to the end of the collection.
Events
- ItemInserted
Occurs when an item is inserted in the collection.
- ItemRangeAdditionFinished
Occurs when an item range addition is finished in the collection.
- ItemRemoved
Occurs when an item is removed from the collection.