In This Article

DoublePropertyChangingRoutedEventArgs Class

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

public class DoublePropertyChangingRoutedEventArgs : PropertyChangingRoutedEventArgs<double>
Inheritance:
System.Object System.EventArgs System.Windows.RoutedEventArgs PropertyChangingRoutedEventArgs<System.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 System.Double

The current value of the property.

newValue System.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 System.Windows.RoutedEvent

The routed event identifier for this event arguments instance.

oldValue System.Double

The current value of the property.

newValue System.Double

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

Inherited Members