Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DependencyObject.SetCurrentValue(DependencyProperty, Object) Method

Definition

Namespace:
System.Windows
Assembly:
WindowsBase.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Sets the value of a dependency property without changing its value source.

public:
 void SetCurrentValue(System::Windows::DependencyProperty ^ dp, System::Object ^ value);
public void SetCurrentValue(System.Windows.DependencyProperty dp, object value);
member this.SetCurrentValue : System.Windows.DependencyProperty * obj -> unit
Public Sub SetCurrentValue (dp As DependencyProperty, value As Object)

Parameters

dp
DependencyProperty

The identifier of the dependency property to set.

value
Object

The new local value.

Exceptions

Attempted to modify a read-only dependency property, or a property on a sealed DependencyObject.

value was not the correct type as registered for the dp property.

Remarks

This method is used by a component that programmatically sets the value of one of its own properties without disabling an application's declared use of the property. The SetCurrentValue method changes the effective value of the property, but existing triggers, data bindings, and styles will continue to work.

Applies to


Feedback

Was this page helpful?