FrameworkElement.SetBinding Method (DependencyProperty, BindingBase)
.NET Framework 4.6 and 4.5
Attaches a binding to this element, based on the provided binding object.
Namespace: System.Windows
Assembly: PresentationFramework (in PresentationFramework.dll)
public BindingExpressionBase SetBinding(
DependencyProperty dp,
BindingBase binding
)
Parameters
- dp
- Type: System.Windows.DependencyProperty
Identifies the property where the binding should be established.
- binding
- Type: System.Windows.Data.BindingBase
Represents the specifics of the data binding.
Return Value
Type: System.Windows.Data.BindingExpressionBaseRecords the conditions of the binding. This return value can be useful for error checking.
This method is a convenience method for calling BindingOperations.SetBinding, which passes the current instance as the DependencyObject.
Show: