Edit

Share via


DependencyObject.AddHandler(DependencyProperty, Object) Method

Definition

Adds a handler for an event of a DependencyObject.

public:
 void AddHandler(System::Workflow::ComponentModel::DependencyProperty ^ dependencyEvent, System::Object ^ value);
public void AddHandler(System.Workflow.ComponentModel.DependencyProperty dependencyEvent, object value);
member this.AddHandler : System.Workflow.ComponentModel.DependencyProperty * obj -> unit
Public Sub AddHandler (dependencyEvent As DependencyProperty, value As Object)

Parameters

dependencyEvent
DependencyProperty

The DependencyProperty.

value
Object

The Object that represents the value of this property. In this case, a Delegate type.

Exceptions

Either of the arguments is a null reference (Nothing in Visual Basic).

Value is of incorrect Type

-or-

The dependencyEvent represents a non-event DependencyProperty.

Remarks

When you create a delegate, you identify the method that handles the event. To associate the event with your event handler, add an instance of the delegate to the event. Unless you remove the delegate, the event handler is called whenever the event occurs. Multiple delegates can be added to handle an event. For more information about event-handler delegates, see Handling and Raising Events.

Applies to