BindingOperations.ClearBinding(DependencyObject, DependencyProperty) Method
Definition
Removes the binding from a property if there is one.
public:
static void ClearBinding(System::Windows::DependencyObject ^ target, System::Windows::DependencyProperty ^ dp);
public static void ClearBinding (System.Windows.DependencyObject target, System.Windows.DependencyProperty dp);
static member ClearBinding : System.Windows.DependencyObject * System.Windows.DependencyProperty -> unit
Public Shared Sub ClearBinding (target As DependencyObject, dp As DependencyProperty)
Parameters
- target
- DependencyObject
The object from which to remove the binding.
The dependency property from which to remove the binding.
Exceptions
The target
and dp
parameters cannot be null
.
Remarks
If the given property is data-bound with a Binding, PriorityBinding, or MultiBinding, this method removes the corresponding binding expression and restores the value of the property to what it was before any local value was set through the binding.
If the given property is not data-bound, this method has no effect.