Class ValueChangedEventArgs<TValue>
Represents the event arguments for a property change event.
Inheritance
System.Object
ValueChangedEventArgs<TValue>
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ValueChangedEventArgs<TValue> : EventArgs
Type Parameters
TValue
Specifies the value type of the changed property. |
Constructors
ValueChangedEventArgs(TValue, TValue)
Initializes a new instance of the ValueChangedEventArgs<TValue> class.
Declaration
public ValueChangedEventArgs(TValue previousValue, TValue newValue)
Parameters
TValue
previousValue
Specifies the previous value of the property. |
TValue
newValue
Specifies the new value of the property. |
Properties
NewValue
Gets the new value of the property.
Declaration
public TValue NewValue { get; }
Property Value
TValue
|
PreviousValue
Gets the previous value of the property.
Declaration
public TValue PreviousValue { get; }
Property Value
TValue
|