Class for DataBinding lists. (See TracksList, PlaylistList, Playlist).


The following tables list the members exposed by DataBoundList<T>.

Public Properties

  Name Description
Public property AllowEdit Gets or sets a value indicating whether items in the list can be edited. (inherited from BindingList)
Public property AllowNew Gets or sets a value indicating whether you can add items to the list using the AddNew method. (inherited from BindingList)
Public property AllowRemove Gets or sets a value indicating whether you can remove items from the collection. (inherited from BindingList)
Public property Count Gets the number of elements actually contained in the Collection. (inherited from Collection)
Public property Filter   (inherited from SortableFilteringBindingList)
Public property Item Gets or sets the element at the specified index. (inherited from Collection)
Public property RaiseListChangedEvents Gets or sets a value indicating whether adding or removing items within the list raises ListChanged events. (inherited from BindingList)
Public property SortDescriptions   (inherited from SortableFilteringBindingList)
Public property SupportsAdvancedSorting   (inherited from SortableFilteringBindingList)
Public property SupportsFiltering   (inherited from SortableFilteringBindingList)
Top

Public Methods

  Name Description
Public method Add Adds an object to the end of the Collection. (inherited from Collection)
Public method AddNew Adds a new item to the collection. (inherited from BindingList)
Public method ApplyCustomSort   (inherited from SortableFilteringBindingList)
Public method ApplySort   (inherited from SortableFilteringBindingList)
Public method CancelNew Discards a pending new item. (inherited from BindingList)
Public method Clear Removes all elements from the Collection. (inherited from Collection)
Public method Contains Determines whether an element is in the Collection. (inherited from Collection)
Public method CopyTo Copies the entire Collection to a compatible one-dimensional Array, starting at the specified index of the target array. (inherited from Collection)
Public method EndNew Commits a pending new item to the collection. (inherited from BindingList)
Public method Equals Determines whether the specified Object is equal to the current Object. (inherited from Object)
Public method GetEnumerator Returns an enumerator that iterates through the Collection. (inherited from Collection)
Public method GetHashCode Serves as a hash function for a particular type. GetHashCode is suitable for use in hashing algorithms and data structures like a hash table. (inherited from Object)
Public method GetType Gets the Type of the current instance. (inherited from Object)
Public method IndexOf Searches for the specified object and returns the zero-based index of the first occurrence within the entire Collection. (inherited from Collection)
Public method Insert Inserts an element into the Collection at the specified index. (inherited from Collection)
Public method Remove Removes the first occurrence of a specific object from the Collection. (inherited from Collection)
Public method RemoveAt Removes the element at the specified index of the Collection. (inherited from Collection)
Public method RemoveFilter   (inherited from SortableFilteringBindingList)
Public method ResetBindings Raises a ListChanged event of type Reset. (inherited from BindingList)
Public method ResetItem Raises a ListChanged event of type ItemChanged for the item at the specified position. (inherited from BindingList)
Public method ToString Returns a String that represents the current Object. (inherited from Object)
Top

Public Events

  Name Description
Public event AddingNew Occurs before an item is added to the list. (inherited from BindingList)
Public event ListChanged Occurs when the list or an item in the list changes. (inherited from BindingList)
Top

See Also