Click or drag to resize
DependencyObjectSetLocalValue Method
Sets the local value of a dependency property on a DependencyObject while not overriding a hypothetical Binding (example: when the user writes in a TextBox with a two way Binding on its Text property).

Namespace: Windows.UI.Xaml
Assembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax
C#
public void SetLocalValue(
	DependencyProperty dependencyProperty,
	Object value
)

Parameters

dependencyProperty
Type: Windows.UI.XamlDependencyProperty
The identifier of the dependency property to set.
value
Type: SystemObject
The new local value.
See Also