FrameworkElement.GetBindingExpression(DependencyProperty) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したプロパティでのバインディングを表す 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
パラメーター
バインディングを取得するターゲット DependencyProperty。
戻り値
ターゲット プロパティにアクティブなバインディングが設定されている場合は BindingExpression。それ以外の場合は null
。
注釈
戻り値 null
の確認は、プロパティにアクティブなバインドがあるかどうかを判断するために使用できる手法です。
このメソッドは、実際にはメソッドの便利なラッパー BindingOperations.GetBindingExpression にすぎません。 GetBindingExpression現在のインスタンスとパラメーターBindingOperations.GetBindingExpressionをdp
渡します。