FrameworkContentElement.GetBindingExpression(DependencyProperty) Méthode

Définition

Reçoit le BindingExpression pour la liaison de propriété spécifiée.

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

Paramètres

dp
DependencyProperty

Le DependencyProperty cible à partir duquel obtenir la liaison.

Retours

BindingExpression

Retourne un BindingExpression si la cible est liée aux données ; sinon, null.

Exemples

L’exemple suivant récupère une liaison en interrogeant une propriété.

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

S’applique à