Class ItemChangedEventArgs<T>
Contains data about the item's property that has been changed.
Inherited Members
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public class ItemChangedEventArgs<T> : ItemChangedEventArgs where T : INotifyPropertyChanged
Type Parameters
T
Type of the changed item. |
Constructors
ItemChangedEventArgs(T, String)
Initializes a new instance of the ItemChangedEventArgs<T> class.
Declaration
public ItemChangedEventArgs(T item, string propertyName)
Parameters
T
item
The item that has been changed. |
System.String
propertyName
Name of the property that have been changed. |
Properties
Item
Gets the item that has been changed.
Declaration
public T Item { get; }
Property Value
T
The item that has been changed. |