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

注釈

戻り値 null の確認は、プロパティにアクティブなバインドがあるかどうかを判断するために使用できる手法です。

このメソッドは、実際にはメソッドの便利なラッパー BindingOperations.GetBindingExpression にすぎません。 GetBindingExpression現在のインスタンスとパラメーターBindingOperations.GetBindingExpressiondp渡します。

適用対象

こちらもご覧ください