Provides event arguments for a bool property change routed event, indicating the old and new values.
- Inheritance:
-
object
Event
Args RoutedEvent PropertyArgs Changed <bool> objectRouted Event Args
Constructors
BooleanPropertyChangedRoutedEventArgs(bool, bool)
Initializes a new instance of the BooleanPropertyChangedRoutedEventArgs
class.
Parameter | Type | Description |
---|---|---|
oldValue | bool | The previous value of the property being tracked as reported by an event. |
newValue | bool | The new value of the property being tracked as reported by an event. |
BooleanPropertyChangedRoutedEventArgs(RoutedEvent, bool, bool)
Initializes a new instance of the BooleanPropertyChangedRoutedEventArgs
class.
Parameter | Type | Description |
---|---|---|
routedEvent | Routed |
The routed event identifier for this event arguments instance. |
oldValue | bool | The previous value of the property being tracked as reported by an event. |
newValue | bool | The new value of the property being tracked as reported by an event. |
BooleanPropertyChangedRoutedEventArgs(RoutedEvent, bool, bool, object)
Initializes a new instance of the BooleanPropertyChangedRoutedEventArgs
class.
Parameter | Type | Description |
---|---|---|
routedEvent | Routed |
The routed event identifier for this event arguments instance. |
oldValue | bool | The previous value of the property being tracked as reported by an event. |
newValue | bool | The new value of the property being tracked as reported by an event. |
source | object | An alternate source that will be reported when the event is handled. |