FrameworkContentElement::SetBinding Method (DependencyProperty^, BindingBase^)

 

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 bound property.

binding
Type: System.Windows.Data::BindingBase^

Represents a data binding.

Return Value

Type: System.Windows.Data::BindingExpressionBase^

Records 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.

The following example sets a binding on a Paragraph element, by creating a new Binding and setting the source to a newly built DateTime object.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: