FrameworkContentElement.GetBindingExpression(DependencyProperty) Метод

Определение

Возвращает BindingExpression для привязки указанного свойства.

public:
 System::Windows::Data::BindingExpression ^ GetBindingExpression(System::Windows::DependencyProperty ^ dp);
public System.Windows.Data.BindingExpression GetBindingExpression (System.Windows.DependencyProperty dp);
member this.GetBindingExpression : System.Windows.DependencyProperty -> System.Windows.Data.BindingExpression
Public Function GetBindingExpression (dp As DependencyProperty) As BindingExpression

Параметры

dp
DependencyProperty

Целевое DependencyProperty, из которого следует получить привязку.

Возвращаемое значение

BindingExpression

Возвращает BindingExpression, если цель привязана к данным; в противном случае — null.

Примеры

В следующем примере извлекается привязка, запрашивая свойство.

Binding binding = introParagraph.GetBindingExpression(FrameworkContentElement.TagProperty).ParentBinding;
Dim binding As Binding = introParagraph.GetBindingExpression(FrameworkContentElement.TagProperty).ParentBinding

Применяется к