Table of Contents
TotalItemCount Property

Gets or sets the total item count.

Syntax
 public Int32 TotalItemCount { get; set; }
Remarks

Set this property to enable load on demand. For example, if this property is set to 100 but Items only contain 50 items, then the ListBox will fire MoreItemsNeeded event when user scrolls to the bottom of the list box. You can then handle the event to add more items into the ListBox's Items collection.

See Also