BindingOperations Class
Provides static methods to manipulate bindings, including Binding, MultiBinding, and PriorityBinding objects.
Namespace: System.Windows.Data
Assembly: PresentationFramework (in PresentationFramework.dll)
The BindingOperations type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | DisconnectedSource | Gets an object that replaces the DataContext when an item container is removed from the visual tree. |
| Name | Description | |
|---|---|---|
![]() ![]() | AccessCollection | Provides access to a collection by using the synchronization mechanism that the application specified when it called EnableCollectionSynchronization. |
![]() ![]() | 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. |
![]() ![]() | DisableCollectionSynchronization | Remove the synchronization registered for the specified collection. |
![]() ![]() | EnableCollectionSynchronization(IEnumerable, Object) | Enables a collection to be accessed across multiple threads and specifies the lock object that should be used to synchronize access to the collection. |
![]() ![]() | EnableCollectionSynchronization(IEnumerable, Object, CollectionSynchronizationCallback) | Enables a collection to be accessed across multiple threads and specifies the callback that should be used to synchronize access to the collection. |
![]() ![]() | 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. |
![]() ![]() | GetSourceUpdatingBindingGroups | Gets all BindingGroup objects that have invalid values or target values have not been updated the source. |
![]() ![]() | GetSourceUpdatingBindings | Gets all BindingExpressionBase objects that have invalid values or target values have not been updated the source. |
![]() ![]() | 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. |
| Name | Description | |
|---|---|---|
![]() ![]() | CollectionRegistering | Occurs when the data-binding system notices a collection. |
![]() ![]() | CollectionViewRegistering | Occurs when the data-binding system notices a collection view. |
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.
public class MyData : INotifyPropertyChanged { private string myDataProperty; public MyData() { } public MyData(DateTime dateTime) { myDataProperty = "Last bound time was " + dateTime.ToLongTimeString(); } public String MyDataProperty { get { return myDataProperty; } set { myDataProperty = value; OnPropertyChanged("MyDataProperty"); } } public event PropertyChangedEventHandler PropertyChanged; private void OnPropertyChanged(string info) { PropertyChangedEventHandler handler = PropertyChanged; if (handler != null) { handler(this, new PropertyChangedEventArgs(info)); } } }
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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
