編集

次の方法で共有


DependencyObject.SetValue(DependencyProperty, Object) Method

Definition

Sets the value of the DependencyProperty to the object.

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

Parameters

dependencyProperty
DependencyProperty

The DependencyProperty to be set.

value
Object

The Object to set the value to.

Remarks

SetBinding sets a binding for the dependency property.

SetValue sets a 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