RoutedEventArgs.RoutedEvent Property
.NET Framework (current version)
Gets or sets the RoutedEvent associated with this RoutedEventArgs instance.
Assembly: PresentationCore (in PresentationCore.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | Attempted to change the RoutedEvent value while the event is being routed. |
You cannot set this value on a RoutedEventArgs that has already been routed (for instance, if you obtained the arguments through a handler). Attempting to do so will generate an exception. You can only set it on an instance that has not yet been used to generate an invocation of the event.
The value of RoutedEvent cannot be null at any time.
The following example creates new routed event data with an initial constructor and then sets the RoutedEvent property as a subsequent operation. You must have RoutedEvent set prior to raising the routed event.
.NET Framework
Available since 3.0
Available since 3.0
Show: