Summary
Adds a handler for the specified routed event.
Syntax
void AddHandler(RoutedEvent routedEvent, Delegate handler, RoutingStrategies routes = Direct | Bubble, bool handledEventsToo = false)
Parameters
Name |
Type |
Description |
routedEvent |
RoutedEvent |
The routed event. |
handler |
Delegate |
The handler. |
routes |
RoutingStrategies |
The routing strategies to listen to. |
handledEventsToo |
bool |
Whether handled events should also be listened for. |
Return Value
Type |
Description |
void |
A disposable that terminates the event subscription. |