FrameworkElement.GetBindingExpression(DependencyProperty) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne BindingExpression qui représente la liaison sur la 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
DependencyProperty cible de laquelle obtenir la liaison.
Retours
BindingExpression si la propriété cible possède une liaison active ; sinon, retourne null
.
Remarques
La vérification de la valeur de retour pour null
est une technique que vous pouvez utiliser pour déterminer si une propriété a une liaison active.
Cette méthode n’est vraiment qu’un wrapper pratique autour de la BindingOperations.GetBindingExpression méthode.
GetBindingExpression passe l’instance actuelle et le dp
paramètre à BindingOperations.GetBindingExpression.