Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This example shows how to clear bindings from an object.
Example
To clear a binding from an individual property on an object, call ClearBinding as shown in the following example. The following example removes the binding from the TextProperty of mytext, a TextBlock object.
BindingOperations.ClearBinding(Me.myText, TextBlock.TextProperty)
BindingOperations.ClearBinding(myText, TextBlock.TextProperty);
Clearing the binding removes the binding so that the value of the dependency property is changed to whatever it would have been without the binding. This value could be a default value, an inherited value, or a value from a data template binding.
To clear bindings from all possible properties on an object, use ClearAllBindings.
For the complete example, see Creating a Binding in Code Sample.