New to Telerik UI for WPFStart a free 30-day trial

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)
Parameters:oldValueT

The old value.

newValueT

The new value.

routedEventRoutedEvent

The routed event.

Initializes a new instance of the RadRoutedPropertyChangedEventArgs class.

C#
public RadRoutedPropertyChangedEventArgs(T oldValue, T newValue)
Parameters:oldValueT

The old value.

newValueT

The new value.

Properties

Gets the new value.

C#
public T NewValue { get; }
Property Value:

The new value.

Gets the old value.

C#
public T OldValue { get; }
Property Value:

The old value.