Edit

Share via


DependencyObject.SetValue(DependencyProperty, Object) Method

Definition

Sets the value of the DependencyProperty to the object.

C#
public void SetValue(System.Workflow.ComponentModel.DependencyProperty dependencyProperty, object value);

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

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1