UIElement3D.AddToEventRoute(EventRoute, RoutedEventArgs) Method

Definition

Adds handlers to the specified EventRoute for the current UIElement3D event handler collection.

public:
 void AddToEventRoute(System::Windows::EventRoute ^ route, System::Windows::RoutedEventArgs ^ e);
public void AddToEventRoute (System.Windows.EventRoute route, System.Windows.RoutedEventArgs e);
member this.AddToEventRoute : System.Windows.EventRoute * System.Windows.RoutedEventArgs -> unit
Public Sub AddToEventRoute (route As EventRoute, e As RoutedEventArgs)

Parameters

route
EventRoute

The event route that handlers are added to.

e
RoutedEventArgs

The event data that is used to add the handlers. This method uses the RoutedEvent property of the event data to create the handlers.

Remarks

This method can be used by content host elements (either those that implement IContentHost or those that don't) to add handlers for child elements to the EventRoute.

AddToEventRoute is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Applies to