Class ItemChangedEventArgs
Contains data about the item's property that has been changed.
Inheritance
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public class ItemChangedEventArgs : EventArgs
Constructors
ItemChangedEventArgs(Object, String)
Initializes a new instance of the ItemChangedEventArgs class.
Declaration
public ItemChangedEventArgs(object item, string propertyName)
Parameters
System.Object
item
The item. |
System.String
propertyName
Name of the property. |
Properties
Item
Gets the item that has been changed.
Declaration
public object Item { get; }
Property Value
System.Object
The item that has been changed. |
PropertyName
Gets the name of the property that has been changed.
Declaration
public string PropertyName { get; }
Property Value
System.String
The name of the property that has been changed. |