Contains information about a list change event.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.Scheduler.dll
Type Parameters:
T
Syntax:
public class ListChangedEventArgs<T> : EventArgs
Inheritance: objectEventArgsListChangedEventArgs<T>
Inherited Members
Constructors
Initializes a new instance of the ListChangedEventArgs<T> class.
public ListChangedEventArgs(ListChangedType listChangedType, IList<T> newItems, IList<T> oldItems)
Type of the list change.
newItemsIList<T>The new items.
oldItemsIList<T>The old items.
Initializes a new instance of the ListChangedEventArgs<T> class.
public ListChangedEventArgs(ListChangedType listChangedType, IList<T> changedItems, string propertyName)
Type of the list change.
changedItemsIList<T>The changed items.
propertyNamestringName of the property.
Initializes a new instance of the ListChangedEventArgs<T> class.
public ListChangedEventArgs(ListChangedType listChangedType, IList<T> newItems)
Type of the list change.
newItemsIList<T>The new items.
Initializes a new instance of the ListChangedEventArgs<T> class.
public ListChangedEventArgs(ListChangedType listChangedType, T changedItem, string propertyName)
Type of the list change.
changedItemTThe changed item.
propertyNamestringName of the property.
Initializes a new instance of the ListChangedEventArgs<T> class.
public ListChangedEventArgs(ListChangedType listChangedType, T newItem, T oldItem)
Type of the list change.
newItemTThe new item.
oldItemTThe old item.
Initializes a new instance of the ListChangedEventArgs<T> class.
public ListChangedEventArgs(ListChangedType listChangedType, T newItem)
Type of the list change.
newItemTThe new item.
Initializes a new instance of the ListChangedEventArgs<T> class.
public ListChangedEventArgs(ListChangedType listChangedType)
Type of the list change.
Properties
Gets the type of the list change.
public ListChangedType ListChangedType { get; }
The type of the list change.
NewItems
IList<T>
Gets the new items.
public IList<T> NewItems { get; }
The new items.
OldItems
IList<T>
Gets the old items.
public IList<T> OldItems { get; }
The old items.
Gets the name of the property.
public string PropertyName { get; }
The name of the property.