Class ItemPropertyChangedEventArgs<T>
Provides data for events that occur when a property of an item in an observable collection changes. This class extends System.EventArgs to include information about the item and the property that changed.
Inheritance
System.Object
ItemPropertyChangedEventArgs<T>
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public class ItemPropertyChangedEventArgs<T> : EventArgs
Type Parameters
T
The type of the item whose property changed. |
Fields
Item
The item whose property changed.
Declaration
public readonly T Item
Field Value
T
|
PropertyName
The name of the property that changed.
Declaration
public readonly string PropertyName
Field Value
System.String
|