EventRoute::Add Method (Object^, Delegate^, Boolean)

 

Adds the specified handler for the specified target to the route.

Namespace:   System.Windows
Assembly:  PresentationCore (in PresentationCore.dll)

public:
void Add(
	Object^ target,
	Delegate^ handler,
	bool handledEventsToo
)

Parameters

target
Type: System::Object^

Specifies the target object of which the handler is to be added to the route.

handler
Type: System::Delegate^

Specifies the handler to be added to the route.

handledEventsToo
Type: System::Boolean

Indicates whether or not the listener detects events that have already been handled.

It is not an error to add a handler for a particular target instance twice. In such a case, the handler will be called twice.

.NET Framework
Available since 3.0
Return to top
Show: