ClassListChangedEventArgs<T>
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
ListChangedEventArgs(ListChangedType)
Initializes a new instance of the ListChangedEventArgs<T> class.
Declaration
public ListChangedEventArgs(ListChangedType listChangedType)
Parameters
listChangedType
Type of the list change.
ListChangedEventArgs(ListChangedType, IList<T>)
Initializes a new instance of the ListChangedEventArgs<T> class.
Declaration
public ListChangedEventArgs(ListChangedType listChangedType, IList<T> newItems)
Parameters
listChangedType
Type of the list change.
newItems
IList<T>
The new items.
ListChangedEventArgs(ListChangedType, IList<T>, IList<T>)
Initializes a new instance of the ListChangedEventArgs<T> class.
Declaration
public ListChangedEventArgs(ListChangedType listChangedType, IList<T> newItems, IList<T> oldItems)
Parameters
listChangedType
Type of the list change.
newItems
IList<T>
The new items.
oldItems
IList<T>
The old items.
ListChangedEventArgs(ListChangedType, IList<T>, string)
Initializes a new instance of the ListChangedEventArgs<T> class.
Declaration
public ListChangedEventArgs(ListChangedType listChangedType, IList<T> changedItems, string propertyName)
Parameters
listChangedType
Type of the list change.
changedItems
IList<T>
The changed items.
propertyName
Name of the property.
ListChangedEventArgs(ListChangedType, T)
Initializes a new instance of the ListChangedEventArgs<T> class.
Declaration
public ListChangedEventArgs(ListChangedType listChangedType, T newItem)
Parameters
listChangedType
Type of the list change.
newItem
T
The new item.
ListChangedEventArgs(ListChangedType, T, T)
Initializes a new instance of the ListChangedEventArgs<T> class.
Declaration
public ListChangedEventArgs(ListChangedType listChangedType, T newItem, T oldItem)
Parameters
listChangedType
Type of the list change.
newItem
T
The new item.
oldItem
T
The old item.
ListChangedEventArgs(ListChangedType, T, string)
Initializes a new instance of the ListChangedEventArgs<T> class.
Declaration
public ListChangedEventArgs(ListChangedType listChangedType, T changedItem, string propertyName)
Parameters
listChangedType
Type of the list change.
changedItem
T
The changed item.
propertyName
Name of the property.
Properties
ListChangedType
Gets the type of the list change.
Declaration
public ListChangedType ListChangedType { get; }
Property Value
The type of the list change.
NewItems
Gets the new items.
Declaration
public IList<T> NewItems { get; }
Property Value
IList<T>
The new items.
OldItems
Gets the old items.
Declaration
public IList<T> OldItems { get; }
Property Value
IList<T>
The old items.
PropertyName
Gets the name of the property.
Declaration
public string PropertyName { get; }
Property Value
The name of the property.