ContentElement.AddToEventRoute(EventRoute, RoutedEventArgs) Method

Definition

Adds handlers to the specified EventRoute for the current ContentElement 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 arguments to create the handlers.

Remarks

Use this method for content host elements (regardless whether they implement IContentHost) in order to add handlers for the content host child elements to the host EventRoute.

Applies to