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取得 的主要方法。