Class RadRoutedPropertyChangedEventArgs<T>
Provides data about a change in value to a dependency property as reported by particular routed events, including the previous and current value of the property that changed.
Inherited Members
Namespace: Telerik.Windows
Assembly: Telerik.Windows.Controls.dll
Syntax
public class RadRoutedPropertyChangedEventArgs<T> : RadRoutedEventArgs
Type Parameters
T
The type of the dependency property that has changed. |
Constructors
RadRoutedPropertyChangedEventArgs(T, T)
Initializes a new instance of the RadRoutedPropertyChangedEventArgs class.
Declaration
public RadRoutedPropertyChangedEventArgs(T oldValue, T newValue)
Parameters
T
oldValue
The old value. |
T
newValue
The new value. |
RadRoutedPropertyChangedEventArgs(T, T, RoutedEvent)
Initializes a new instance of the RadRoutedPropertyChangedEventArgs class.
Declaration
public RadRoutedPropertyChangedEventArgs(T oldValue, T newValue, RoutedEvent routedEvent)
Parameters
T
oldValue
The old value. |
T
newValue
The new value. |
RoutedEvent
routedEvent
The routed event. |
Properties
NewValue
Gets the new value.
Declaration
public T NewValue { get; }
Property Value
T
The new value. |
OldValue
Gets the old value.
Declaration
public T OldValue { get; }
Property Value
T
The old value. |