DependencyPropertyDescriptor.FromProperty 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
根据所使用的签名,基于提供的 DependencyPropertyDescriptor 或提供的类型,返回 PropertyDescriptor。
重载
FromProperty(DependencyProperty, Type) |
针对提供的依赖属性和目标类型返回 DependencyPropertyDescriptor。 |
FromProperty(PropertyDescriptor) |
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
是要为其设置属性的对象的类型。 对于依赖属性,该类型等效于 OwnerType 的 dependencyProperty
。 对于附加属性, 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。 否则返回 null
DependencyPropertyDescriptor。
注解
此方法是设计器应用程序在检查 的所有属性的基础上获取 DependencyPropertyDescriptor 的主要 PropertyDescriptor方法。