BindingOperations.GetBindingExpressionBase 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索在指定属性上设置的 BindingExpressionBase 对象。
public:
static System::Windows::Data::BindingExpressionBase ^ GetBindingExpressionBase(System::Windows::DependencyObject ^ target, System::Windows::DependencyProperty ^ dp);
public static System.Windows.Data.BindingExpressionBase GetBindingExpressionBase (System.Windows.DependencyObject target, System.Windows.DependencyProperty dp);
static member GetBindingExpressionBase : System.Windows.DependencyObject * System.Windows.DependencyProperty -> System.Windows.Data.BindingExpressionBase
Public Shared Function GetBindingExpressionBase (target As DependencyObject, dp As DependencyProperty) As BindingExpressionBase
参数
- target
- DependencyObject
dp
所在的对象。
从中检索 BindingExpressionBase 对象的绑定目标属性。
返回
给定属性上设置的 BindingExpressionBase 对象,或 null
(如果尚未设置绑定对象)。
例外
target
和 dp
参数不能为 null。
注解
该 BindingExpressionBase 类是该 BindingExpression类 PriorityBindingExpression的通用基类,以及 MultiBindingExpression 类。 如果事先知道属性上设置的绑定类型,可以使用和GetBindingExpressionGetPriorityBindingExpressionGetMultiBindingExpression方法。