Represents the event arguments for a property change event.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Type Parameters:
TValue
Specifies the value type of the changed property.
Syntax:
C#
public class ValueChangedEventArgs<TValue> : EventArgs
Inheritance: objectEventArgsValueChangedEventArgs<TValue>
Inherited Members
Constructors
Initializes a new instance of the ValueChangedEventArgs<TValue> class.
C#
public ValueChangedEventArgs(TValue previousValue, TValue newValue)
Specifies the previous value of the property.
newValueTValueSpecifies the new value of the property.
Properties
NewValue
TValue
Gets the new value of the property.
C#
public TValue NewValue { get; }
PreviousValue
TValue
Gets the previous value of the property.
C#
public TValue PreviousValue { get; }