In This Article

DoublePropertyChangingRoutedEventArgs Class

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

public class DoublePropertyChangingRoutedEventArgs : PropertyChangingRoutedEventArgs<double>
Inheritance:
object EventArgs RoutedEventArgs PropertyChangingRoutedEventArgs<double> object

Constructors

DoublePropertyChangingRoutedEventArgs(double, double)

Initializes a new instance of the DoublePropertyChangingRoutedEventArgs class with the Cancel property set to false.

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

The current value of the property.

newValue double

The new value of the property that will be set if the property change is not cancelled.

DoublePropertyChangingRoutedEventArgs(RoutedEvent, double, double)

Initializes a new instance of the PropertyChangingRoutedEventArgs class with the Cancel property set to false.

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

The routed event identifier for this event arguments instance.

oldValue double

The current value of the property.

newValue double

The new value of the property that will be set if the property change is not cancelled.

Inherited Members