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.

Examples

The following code shows how a dependency property is set within a dependency object using SetValue.

C#
System.Workflow.ComponentModel.ActivityBind activityBind1 = new System.Workflow.ComponentModel.ActivityBind();
this.SampleReplicatorChildActivity1 = new SampleReplicatorChildActivity();
this.ReplicatorWork = new System.Workflow.Activities.ReplicatorActivity();
//
// SampleReplicatorChildActivity1
//
this.SampleReplicatorChildActivity1.InstanceData = null;
this.SampleReplicatorChildActivity1.Name = "SampleReplicatorChildActivity1";
activityBind1.Name = "SimpleReplicatorWorkflow";
activityBind1.Path = "ChildData";
//
// ReplicatorWork
//
this.ReplicatorWork.Activities.Add(this.SampleReplicatorChildActivity1);
this.ReplicatorWork.ExecutionType = System.Workflow.Activities.ExecutionType.Sequence;
this.ReplicatorWork.Name = "ReplicatorWork";
this.ReplicatorWork.ChildInitialized += new System.EventHandler<System.Workflow.Activities.ReplicatorChildEventArgs>(this.ChildInitializer);
this.ReplicatorWork.SetBinding(System.Workflow.Activities.ReplicatorActivity.InitialChildDataProperty, ((System.Workflow.ComponentModel.ActivityBind)(activityBind1)));

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

Proizvod Verzije
.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