public class ExtendedBindingList<T> : BindingList<T>
where T : ICloneable
Public Class ExtendedBindingList(Of T As ICloneable)
Inherits BindingList(Of T)
generic<typename T>
where T : ICloneable
public ref class ExtendedBindingList : public BindingList<T>
type ExtendedBindingList<'T when 'T : ICloneable> =
class
inherit BindingList<'T>
end
ExtendedBindingListT | Default constructor |
ExtendedBindingListT(IListT) | Construct the collection using the specified list of items |
AllowEdit | Gets or sets a value indicating whether items in the list can be edited. (Inherited from BindingListT) |
AllowNew | Gets or sets a value indicating whether you can add items to the list using the AddNew method. (Inherited from BindingListT) |
AllowRemove | Gets or sets a value indicating whether you can remove items from the collection. (Inherited from BindingListT) |
Count | Gets the number of elements actually contained in the CollectionT. (Inherited from CollectionT) |
IsSortedCore |
This returns a flag indicating whether or not sorting is currently applied
(Overrides BindingListTIsSortedCore) |
Item | Gets or sets the element at the specified index. (Inherited from CollectionT) |
Items | Gets a IListT wrapper around the CollectionT. (Inherited from CollectionT) |
RaiseListChangedEvents | Gets or sets a value indicating whether adding or removing items within the list raises ListChanged events. (Inherited from BindingListT) |
SortDirectionCore |
This returns the current sort direction if sorting has been applied
(Overrides BindingListTSortDirectionCore) |
SortPropertyCore |
This returns the current property descriptor if sorting has been applied
(Overrides BindingListTSortPropertyCore) |
SupportsChangeNotificationCore | Gets a value indicating whether ListChanged events are enabled. (Inherited from BindingListT) |
SupportsSearchingCore |
This is used to indicate whether or not searching is supported
(Overrides BindingListTSupportsSearchingCore) |
SupportsSortingCore |
This is used to indicate whether or not sorting is supported
(Overrides BindingListTSupportsSortingCore) |
SyncRoot | This returns an object that can be used to synchronize access to the collection |
Add | Adds an object to the end of the CollectionT. (Inherited from CollectionT) |
AddNew | Adds a new item to the collection. (Inherited from BindingListT) |
AddNewCore | Adds a new item to the end of the collection. (Inherited from BindingListT) |
AddRange | Add a range of items from an array |
ApplySortCore |
This is overridden to apply a sort based on the selected property descriptor and sort direction
(Overrides BindingListTApplySortCore(PropertyDescriptor, ListSortDirection)) |
CancelNew | Discards a pending new item. (Inherited from BindingListT) |
Clear | Removes all elements from the CollectionT. (Inherited from CollectionT) |
ClearItems | Removes all elements from the collection. (Inherited from BindingListT) |
CloneRange | Clone and add a range of items from an enumerable list of items |
Contains | Determines whether an element is in the CollectionT. (Inherited from CollectionT) |
CopyTo | Copies the entire CollectionT to a compatible one-dimensional Array, starting at the specified index of the target array. (Inherited from CollectionT) |
EndNew | Commits a pending new item to the collection. (Inherited from BindingListT) |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
Exists | Determine whether or not the collection contains at least one item that matches the conditions in the specified predicate. |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
Find | Search the collection for the first item that matches the conditions in the specified predicate |
FindAll | Retrieve all of the items that match the conditions defined by the specified predicate |
FindCore |
This searches for the index of the item that has the specified property descriptor with the specified
value.
(Overrides BindingListTFindCore(PropertyDescriptor, Object)) |
FindIndex(PredicateT) | Search for the first item that matches the conditions defined by the specified predicate and return its zero-based index. |
FindIndex(Int32, PredicateT) | Search for the first item that matches the conditions defined by the specified predicate between the starting index and the end of the collection and return its zero-based index. |
FindIndex(Int32, Int32, PredicateT) | Search for the first item that matches the conditions defined by the specified predicate between the starting index and the given number of items and return its zero-based index. |
FindLast | Search the collection for the last item that matches the conditions in the specified predicate |
FindLastIndex(PredicateT) | Search for the last item that matches the conditions defined by the specified predicate and return its zero-based index. |
FindLastIndex(Int32, PredicateT) | Search for the last item that matches the conditions defined by the specified predicate between the starting index and searching backwards to the start of the collection and return its zero-based index. |
FindLastIndex(Int32, Int32, PredicateT) | Search for the last item that matches the conditions defined by the specified predicate between the starting index and searching backwards for the given number of items and return its zero-based index. |
ForEach | Performs the specified action on each item in the collection |
GetEnumerator | Returns an enumerator that iterates through the CollectionT. (Inherited from CollectionT) |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
IndexOf | Searches for the specified object and returns the zero-based index of the first occurrence within the entire CollectionT. (Inherited from CollectionT) |
Insert | Inserts an element into the CollectionT at the specified index. (Inherited from CollectionT) |
InsertItem | Inserts the specified item in the list at the specified index. (Inherited from BindingListT) |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
OnAddingNew | Raises the AddingNew event. (Inherited from BindingListT) |
OnListChanged | Raises the ListChanged event. (Inherited from BindingListT) |
Remove | Removes the first occurrence of a specific object from the CollectionT. (Inherited from CollectionT) |
RemoveAll | Remove all items that match the conditions defined by the specified predicate |
RemoveAt | Removes the element at the specified index of the CollectionT. (Inherited from CollectionT) |
RemoveItem | Removes the item at the specified index. (Inherited from BindingListT) |
RemoveRange | Remove the specified range of items from the collection |
RemoveSortCore |
This is used to remove the sort
(Overrides BindingListTRemoveSortCore) |
ResetBindings | Raises a ListChanged event of type Reset. (Inherited from BindingListT) |
ResetItem | Raises a ListChanged event of type ItemChanged for the item at the specified position. (Inherited from BindingListT) |
SetItem | Replaces the item at the specified index with the specified item. (Inherited from BindingListT) |
Sort | Sort the items in the collection using the default comparer |
Sort(ComparisonT) | Sort the items in the collection using the specified ComparisonT delegate |
Sort(IComparerT) | Sort the items in the collection using the specified comparer |
ToString | Returns a string that represents the current object. (Inherited from Object) |
TrueForAll | Determine if every item in the collection matches the conditions defined by the specified predicate |
AddingNew | Occurs before an item is added to the list. (Inherited from BindingListT) |
ListChanged | Occurs when the list or an item in the list changes. (Inherited from BindingListT) |