In This Article

OperationStatePropertyChangedRoutedEventArgs Class

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

public class OperationStatePropertyChangedRoutedEventArgs : PropertyChangedRoutedEventArgs<OperationState>
Inheritance:
object EventArgs RoutedEventArgs PropertyChangedRoutedEventArgs<OperationState> object

Constructors

OperationStatePropertyChangedRoutedEventArgs(OperationState, OperationState)

Initializes a new instance of the OperationStatePropertyChangedRoutedEventArgs class.

public OperationStatePropertyChangedRoutedEventArgs(OperationState oldValue, OperationState newValue)
Parameter Type Description
oldValue OperationState

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

newValue OperationState

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

OperationStatePropertyChangedRoutedEventArgs(RoutedEvent, OperationState, OperationState)

Initializes a new instance of the OperationStatePropertyChangedRoutedEventArgs class.

public OperationStatePropertyChangedRoutedEventArgs(RoutedEvent routedEvent, OperationState oldValue, OperationState newValue)
Parameter Type Description
routedEvent RoutedEvent

The routed event identifier for this event arguments instance.

oldValue OperationState

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

newValue OperationState

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

Inherited Members