DependencyObject.SetCurrentValue Method
.NET Framework 4.6 and 4.5
Sets the value of a dependency property without changing its value source.
Namespace: System.Windows
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- dp
- Type: System.Windows.DependencyProperty
The identifier of the dependency property to set.
- value
- Type: System.Object
The new local value.
| Exception | Condition |
|---|---|
| InvalidOperationException | Attempted to modify a read-only dependency property, or a property on a sealed DependencyObject. |
| ArgumentException | value was not the correct type as registered for the dp property. |
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.
Show: