evt | The event to handle. |
Handles an event according to its propagation phase and current target, by executing the element's default action or callbacks associated with the event.
The EventDispatcher may invoke this method multiple times for the same event: once for each
propagation phase and each target along the event's propagation path if it has matching callbacks or
overrides default actions for the event.
Do not use this method to intercept all events whose propagation path include this element. There is no
guarantee that it will or will not be invoked for a propagation phase or target along the propagation path
if that target has no callbacks for the event and has no default action override that can receive the event.
Use CallbackEventHandler.RegisterCallback<TEventType>,
or CallbackEventHandler.HandleEventBubbleUp for more predictable results.
Additional resources: CallbackEventHandler.RegisterCallback<TEventType>, CallbackEventHandler.HandleEventBubbleUp