RoutingStrategy Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the routing strategy of a routed event.
public enum class RoutingStrategy
public enum RoutingStrategy
type RoutingStrategy =
Public Enum RoutingStrategy
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Tunnel | 0 | The routed event uses a tunneling strategy, where the event instance routes downwards through the tree, from root to source element. |
Bubble | 1 | The routed event uses a bubbling strategy, where the event instance routes upwards through the tree, from event source to root. |
Direct | 2 | The routed event does not route through an element tree, but does support other routed event capabilities such as class handling, EventTrigger or EventSetter. |
Remarks
Routing strategy for each routed event must be only one of these values. However, input events often exist in pairs on base classes, where one event is the bubbling version and one event is the tunneling version. For input events uniquely, the tunneling and bubbling versions have shared arguments and are raised in succession in response to the input device condition that raises the events.
Applies to
.NET