Class RoutingStrategy
Indicates the routing strategy of a routed event.
Inheritance
Namespace: Telerik.Windows
Assembly: Telerik.Windows.Controls.dll
Syntax
public sealed class RoutingStrategy : Enum
Fields
Bubble
The routed event uses a bubbling strategy, where the event instance routes upwards through the tree, from event source to root.
Declaration
public const RoutingStrategy Bubble
Field Value
RoutingStrategy
|
Direct
The routed event does not route through an element tree, but does support other routed event capabilities such as class handling, EventTrigger or EventSetter.
Declaration
public const RoutingStrategy Direct
Field Value
RoutingStrategy
|
Tunnel
The routed event uses a tunneling strategy, where the event instance routes downwards through the tree, from root to source element.
Declaration
public const RoutingStrategy Tunnel
Field Value
RoutingStrategy
|
value__
Declaration
public int value__
Field Value
System.Int32
|