In This Article

LedStatePropertyChangedRoutedEventArgs Class

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

public class LedStatePropertyChangedRoutedEventArgs : PropertyChangedRoutedEventArgs<LedState>
Inheritance:
object EventArgs RoutedEventArgs PropertyChangedRoutedEventArgs<LedState> object

Constructors

LedStatePropertyChangedRoutedEventArgs(LedState, LedState)

Initializes a new instance of the LedStatePropertyChangedRoutedEventArgs class.

public LedStatePropertyChangedRoutedEventArgs(LedState oldValue, LedState newValue)
Parameter Type Description
oldValue LedState

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

newValue LedState

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

LedStatePropertyChangedRoutedEventArgs(RoutedEvent, LedState, LedState)

Initializes a new instance of the LedStatePropertyChangedRoutedEventArgs class.

public LedStatePropertyChangedRoutedEventArgs(RoutedEvent routedEvent, LedState oldValue, LedState newValue)
Parameter Type Description
routedEvent RoutedEvent

The routed event identifier for this event arguments instance.

oldValue LedState

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

newValue LedState

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

Inherited Members