Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DependencyPropertyDescriptor::FromProperty Method (DependencyProperty^, Type^)

 

Returns a DependencyPropertyDescriptor for a provided dependency property and target type.

Namespace:   System.ComponentModel
Assembly:  WindowsBase (in WindowsBase.dll)

public:
static DependencyPropertyDescriptor^ FromProperty(
	DependencyProperty^ dependencyProperty,
	Type^ targetType
)

Parameters

dependencyProperty
Type: System.Windows::DependencyProperty^

The identifier for a dependency property.

targetType
Type: System::Type^

The type of the object where the property is set.

Return Value

Type: System.ComponentModel::DependencyPropertyDescriptor^

A DependencyPropertyDescriptor for the provided dependency property.

The dependencyProperty may refer to a dependency property or an attached property. targetType is the type of object you want to set the property for. For dependency properties, that type is equivalent to the OwnerType for the dependencyProperty. For attached properties the targetType is typically some other DependencyObject type.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft