Прочетете на английски Редактиране

Споделяне чрез


RoutedEvent.RoutingStrategy Property

Definition

Gets the routing strategy of the routed event.

C#
public System.Windows.RoutingStrategy RoutingStrategy { get; }

Property Value

One of the enumeration values. The default is the enumeration default, Bubble.

Remarks

By convention, tunneling routed events have the name prefix "Preview" and an associated bubbling event defined. It should be rare that there would be only a tunneling version and not a matching bubbling version. For more information, see How to: Create a Custom Routed Event.

The value of this property originates from the RegisterRoutedEvent method that defines a RoutedEvent. Specifically, the value of RoutingStrategy is the routingStrategy parameter value that was passed to RegisterRoutedEvent.

Applies to

Продукт Версии
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also