Enum RoutingDirection
Defines the routing directions for routed events in the Telerik WinControls framework.
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public enum RoutingDirection
Remarks
Routed events can travel through the element tree in two different directions, allowing for sophisticated event handling patterns that enable both preview (tunneling) and bubbling behavior. This enumeration specifies which direction a particular routed event should follow.
The routing direction affects the order in which elements in the visual tree receive and process the event, enabling different event handling strategies for various UI scenarios.
Bubble
Indicates a bubbling event that travels from the target element up through the element hierarchy.
Tunnel
Indicates a tunneling event that travels from the root element down to the target element.