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.

Definition

Namespace:Telerik.Windows

Assembly:Telerik.Windows.Controls.dll

Type Parameters:

T

The type of the dependency property that has changed.

Syntax:

cs-api-definition
public class RadRoutedPropertyChangedEventArgs<T> : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsRadRoutedPropertyChangedEventArgs<T>

Constructors

RadRoutedPropertyChangedEventArgs(T, T)

Initializes a new instance of the RadRoutedPropertyChangedEventArgs class.

Declaration

cs-api-definition
public RadRoutedPropertyChangedEventArgs(T oldValue, T newValue)

Parameters

oldValue

T

The old value.

newValue

T

The new value.

RadRoutedPropertyChangedEventArgs(T, T, RoutedEvent)

Initializes a new instance of the RadRoutedPropertyChangedEventArgs class.

Declaration

cs-api-definition
public RadRoutedPropertyChangedEventArgs(T oldValue, T newValue, RoutedEvent routedEvent)

Parameters

oldValue

T

The old value.

newValue

T

The new value.

routedEvent

RoutedEvent

The routed event.

Properties

NewValue

Gets the new value.

Declaration

cs-api-definition
public T NewValue { get; }

Property Value

T

The new value.

OldValue

Gets the old value.

Declaration

cs-api-definition
public T OldValue { get; }

Property Value

T

The old value.