DependencyPropertyDescriptor.FromProperty 方法

定义

根据所使用的签名,基于提供的 DependencyPropertyDescriptor 或提供的类型,返回 PropertyDescriptor

重载

FromProperty(DependencyProperty, Type)

针对提供的依赖属性和目标类型返回 DependencyPropertyDescriptor

FromProperty(PropertyDescriptor)

返回所提供的 PropertyDescriptorDependencyPropertyDescriptor

FromProperty(DependencyProperty, Type)

针对提供的依赖属性和目标类型返回 DependencyPropertyDescriptor

public:
 static System::ComponentModel::DependencyPropertyDescriptor ^ FromProperty(System::Windows::DependencyProperty ^ dependencyProperty, Type ^ targetType);
public static System.ComponentModel.DependencyPropertyDescriptor FromProperty (System.Windows.DependencyProperty dependencyProperty, Type targetType);
static member FromProperty : System.Windows.DependencyProperty * Type -> System.ComponentModel.DependencyPropertyDescriptor
Public Shared Function FromProperty (dependencyProperty As DependencyProperty, targetType As Type) As DependencyPropertyDescriptor

参数

dependencyProperty
DependencyProperty

依赖项属性的标识符。

targetType
Type

在其中设置属性的对象的类型。

返回

提供的依赖属性的 DependencyPropertyDescriptor

注解

可以 dependencyProperty 引用依赖属性或附加属性。 targetType 是要为其设置属性的对象的类型。 对于依赖属性,该类型等效于 OwnerTypedependencyProperty。 对于附加属性, targetType 通常是某种其他 DependencyObject 类型。

适用于

FromProperty(PropertyDescriptor)

public:
 static System::ComponentModel::DependencyPropertyDescriptor ^ FromProperty(System::ComponentModel::PropertyDescriptor ^ property);
public static System.ComponentModel.DependencyPropertyDescriptor FromProperty (System.ComponentModel.PropertyDescriptor property);
static member FromProperty : System.ComponentModel.PropertyDescriptor -> System.ComponentModel.DependencyPropertyDescriptor
Public Shared Function FromProperty (property As PropertyDescriptor) As DependencyPropertyDescriptor

参数

property
PropertyDescriptor

要检查的 PropertyDescriptor

返回

如果 property 描述的属性为依赖属性,则返回有效 DependencyPropertyDescriptor。 否则返回 nullDependencyPropertyDescriptor

注解

此方法是设计器应用程序在检查 的所有属性的基础上获取 DependencyPropertyDescriptor 的主要 PropertyDescriptor方法。

适用于