BindingOperations.GetBindingBase(DependencyObject, DependencyProperty) 方法

定义

检索在指定属性上设置的 BindingBase 对象。

public:
 static System::Windows::Data::BindingBase ^ GetBindingBase(System::Windows::DependencyObject ^ target, System::Windows::DependencyProperty ^ dp);
public static System.Windows.Data.BindingBase GetBindingBase (System.Windows.DependencyObject target, System.Windows.DependencyProperty dp);
static member GetBindingBase : System.Windows.DependencyObject * System.Windows.DependencyProperty -> System.Windows.Data.BindingBase
Public Shared Function GetBindingBase (target As DependencyObject, dp As DependencyProperty) As BindingBase

参数

target
DependencyObject

dp 所在的对象。

dp
DependencyProperty

从中检索 BindingBase 对象的绑定目标属性。

返回

BindingBase

给定属性上设置的 BindingBase 对象,或 null(如果尚未设置绑定对象)。

例外

targetdp 参数不能为 null

注解

BindingBase 类是该 BindingPriorityBinding的通用基类,以及 MultiBinding 类。 如果事先知道属性上设置的绑定类型,GetMultiBinding则可以使用GetBindingGetPriorityBinding方法。

适用于

另请参阅