Edit

Share via


DependencyObject.SetBinding(DependencyProperty, ActivityBind) Method

Definition

Sets the ActivityBind for the specified DependencyProperty.

public:
 void SetBinding(System::Workflow::ComponentModel::DependencyProperty ^ dependencyProperty, System::Workflow::ComponentModel::ActivityBind ^ bind);
public void SetBinding(System.Workflow.ComponentModel.DependencyProperty dependencyProperty, System.Workflow.ComponentModel.ActivityBind bind);
member this.SetBinding : System.Workflow.ComponentModel.DependencyProperty * System.Workflow.ComponentModel.ActivityBind -> unit
Public Sub SetBinding (dependencyProperty As DependencyProperty, bind As ActivityBind)

Parameters

dependencyProperty
DependencyProperty

The DependencyProperty.

bind
ActivityBind

The ActivityBind to set to.

Exceptions

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

The PropertyMetadata associated with the DependencyProperty is read-only, is metadata, or is not bindable.

This instance is not in DesignMode.

Remarks

SetValue sets the value directly to the DependencyProperty. Similarly, AddHandler adds a handler directly to properties of type event.

These methods are exclusive when they are called for the same property. If SetBinding is called, then the values previously set using SetValue (AddHandler in events) are disregarded. The same is true the other way around: SetValue (AddHandler) resets the binding assigned with SetBinding.

Applies to