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.
Definition
Namespace:Telerik.Windows
Assembly:Telerik.Windows.Controls.dll
Type Parameters:
T
The type of the dependency property that has changed.
Syntax:
C#
public class RadRoutedPropertyChangedEventArgs<T> : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsRadRoutedPropertyChangedEventArgs<T>
Constructors
Initializes a new instance of the RadRoutedPropertyChangedEventArgs class.
C#
public RadRoutedPropertyChangedEventArgs(T oldValue, T newValue, RoutedEvent routedEvent)
The old value.
newValueTThe new value.
routedEventRoutedEventThe routed event.
Initializes a new instance of the RadRoutedPropertyChangedEventArgs class.
C#
public RadRoutedPropertyChangedEventArgs(T oldValue, T newValue)
The old value.
newValueTThe new value.