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 a new instance of the DoublePropertyChangedRoutedEventArgs 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 a new instance of the DoublePropertyChangedRoutedEventArgs 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