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.XamlAssembly: CSharpXamlForHtml5 (in CSharpXamlForHtml5.dll) Version: 1.0.0.0
Syntax 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