DependencyPropertyDescriptor.FromProperty Метод

Определение

Возвращает дескриптор DependencyPropertyDescriptor либо на основе предоставленного дескриптора PropertyDescriptor, либо на основе предоставленного типа, в зависимости от используемой подписи.

Перегрузки

FromProperty(DependencyProperty, Type)

Возвращает DependencyPropertyDescriptor для указанных свойства зависимостей и целевого типа.

FromProperty(PropertyDescriptor)

Возвращает DependencyPropertyDescriptor для указанного 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)

Возвращает DependencyPropertyDescriptor для указанного 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.

Применяется к