BindingOperations Class
Provides static methods to manipulate bindings, including Binding, MultiBinding, and PriorityBinding objects.
Assembly: PresentationFramework (in PresentationFramework.dll)
The BindingOperations type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | ClearAllBindings | Removes all bindings, including bindings of type Binding, MultiBinding, and PriorityBinding, from the specified DependencyObject. |
![]() ![]() | ClearBinding | Removes the binding from a property if there is one. |
![]() ![]() | GetBinding | Retrieves the Binding object that is set on the specified property. |
![]() ![]() | GetBindingBase | Retrieves the BindingBase object that is set on the specified property. |
![]() ![]() | GetBindingExpression | Returns the BindingExpression object associated with the specified binding target property on the specified object. |
![]() ![]() | GetBindingExpressionBase | Retrieves the BindingExpressionBase object that is set on the specified property. |
![]() ![]() | GetMultiBinding | Retrieves the MultiBinding object that is set on the specified property. |
![]() ![]() | GetMultiBindingExpression | Returns the MultiBindingExpression object associated with the specified binding target property on the specified object. |
![]() ![]() | GetPriorityBinding | Retrieves the PriorityBinding object that is set on the specified property. |
![]() ![]() | GetPriorityBindingExpression | Returns the PriorityBindingExpression object associated with the specified binding target property on the specified object. |
![]() ![]() | IsDataBound | Returns a value that indicates whether the specified property is currently data-bound. |
![]() ![]() | SetBinding | Creates and associates a new instance of BindingExpressionBase with the specified binding target property. |
This example shows how to create and set a Binding in code.
The FrameworkElement class and the FrameworkContentElement class both expose a SetBinding method. If you are binding an element that inherits either of these classes, you can call the SetBinding method directly.
The following example creates a class named, MyData, which contains a property named MyDataProperty.
The following example shows how to create a binding object to set the source of the binding. The example uses SetBinding to bind the Text property of myText, which is a TextBlock control, to MyDataProperty.
For the complete code sample, see Code-only Binding Sample.
Instead of calling SetBinding, you can use the SetBinding static method of the BindingOperations class. The following example, calls BindingOperations::SetBinding instead of FrameworkElement::SetBinding to bind myText to myDataProperty.
More Code
| How to: Clear Bindings | This example shows how to clear bindings from an object. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
