FrameworkElementFactory::AddHandler Method (RoutedEvent^, Delegate^, Boolean)
.NET Framework (current version)
Adds an event handler for the given routed event to the instances created by this factory, with the option of having the provided handler be invoked even in cases of routed events that had already been marked as handled by another element along the route.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: void AddHandler( RoutedEvent^ routedEvent, Delegate^ handler, bool handledEventsToo )
Parameters
- routedEvent
-
Type:
System.Windows::RoutedEvent^
Identifier object for the routed event being handled.
- handler
-
Type:
System::Delegate^
A reference to the handler implementation.
- handledEventsToo
-
Type:
System::Boolean
Whether to invoke the handler in cases where the routed event has already been marked as handled in its arguments object. true to invoke the handler even when the routed event is marked handled; otherwise, false. The default is false. Asking to handle already-handled routed events is not common.
.NET Framework
Available since 3.0
Available since 3.0
Show: