In This Article

DoublePropertyChangedRoutedEventArgs Class

Provides event arguments for a double property change routed event, indicating the old and new values.

public class DoublePropertyChangedRoutedEventArgs : PropertyChangedRoutedEventArgs<double>
Inheritance:
object EventArgs RoutedEventArgs PropertyChangedRoutedEventArgs<double> object

Constructors

DoublePropertyChangedRoutedEventArgs(double, double)

Initializes an instance of the class.

public DoublePropertyChangedRoutedEventArgs(double oldValue, double newValue)
Parameter Type Description
oldValue double

The previous value of the property being tracked as reported by an event.

newValue double

The new value of the property being tracked as reported by an event.

DoublePropertyChangedRoutedEventArgs(RoutedEvent?, double, double)

Initializes an instance of the class.

public DoublePropertyChangedRoutedEventArgs(RoutedEvent? routedEvent, double oldValue, double newValue)
Parameter Type Description
routedEvent RoutedEvent

The routed event identifier for this event arguments instance.

oldValue double

The previous value of the property being tracked as reported by an event.

newValue double

The new value of the property being tracked as reported by an event.

Inherited Members

Extension Methods