DependencyProperty.RegisterAttached Method

Definition

Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters.

Overloads

RegisterAttached(String, Type, Type)

Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters. This instance is intended to declare properties that are used on objects other than the objects of owning type.

RegisterAttached(String, Type, Type, PropertyMetadata)

Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters.

RegisterAttached(String, Type, Type, PropertyMetadata, Type)

Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters.

RegisterAttached(String, Type, Type)

Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters. This instance is intended to declare properties that are used on objects other than the objects of owning type.

public:
 static System::Workflow::ComponentModel::DependencyProperty ^ RegisterAttached(System::String ^ name, Type ^ propertyType, Type ^ ownerType);
public static System.Workflow.ComponentModel.DependencyProperty RegisterAttached (string name, Type propertyType, Type ownerType);
static member RegisterAttached : string * Type * Type -> System.Workflow.ComponentModel.DependencyProperty
Public Shared Function RegisterAttached (name As String, propertyType As Type, ownerType As Type) As DependencyProperty

Parameters

name
String

The name of the DependencyProperty.

propertyType
Type

Type of the value the property can contain.

ownerType
Type

Owner Type of the dependency property.

Returns

The DependencyProperty class that has the properties parameterized according to the input parameters.

Applies to

RegisterAttached(String, Type, Type, PropertyMetadata)

Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters.

public:
 static System::Workflow::ComponentModel::DependencyProperty ^ RegisterAttached(System::String ^ name, Type ^ propertyType, Type ^ ownerType, System::Workflow::ComponentModel::PropertyMetadata ^ defaultMetadata);
public static System.Workflow.ComponentModel.DependencyProperty RegisterAttached (string name, Type propertyType, Type ownerType, System.Workflow.ComponentModel.PropertyMetadata defaultMetadata);
static member RegisterAttached : string * Type * Type * System.Workflow.ComponentModel.PropertyMetadata -> System.Workflow.ComponentModel.DependencyProperty
Public Shared Function RegisterAttached (name As String, propertyType As Type, ownerType As Type, defaultMetadata As PropertyMetadata) As DependencyProperty

Parameters

name
String

The name of the DependencyProperty.

propertyType
Type

Type of the value the property can contain.

ownerType
Type

Owner Type of the dependency property.

defaultMetadata
PropertyMetadata

Additional property options.

Returns

The DependencyProperty class that has the properties parameterized according to the input parameters.

Applies to

RegisterAttached(String, Type, Type, PropertyMetadata, Type)

Initializes a new instance of the DependencyProperty class that has the properties parameterized according to the input parameters.

public:
 static System::Workflow::ComponentModel::DependencyProperty ^ RegisterAttached(System::String ^ name, Type ^ propertyType, Type ^ ownerType, System::Workflow::ComponentModel::PropertyMetadata ^ defaultMetadata, Type ^ validatorType);
public static System.Workflow.ComponentModel.DependencyProperty RegisterAttached (string name, Type propertyType, Type ownerType, System.Workflow.ComponentModel.PropertyMetadata defaultMetadata, Type validatorType);
static member RegisterAttached : string * Type * Type * System.Workflow.ComponentModel.PropertyMetadata * Type -> System.Workflow.ComponentModel.DependencyProperty
Public Shared Function RegisterAttached (name As String, propertyType As Type, ownerType As Type, defaultMetadata As PropertyMetadata, validatorType As Type) As DependencyProperty

Parameters

name
String

The name of the DependencyProperty.

propertyType
Type

Type of the value the property can contain.

ownerType
Type

Owner Type of the dependency property.

defaultMetadata
PropertyMetadata

Additional property options.

validatorType
Type

Type of object that implements validation logic for the attached property.

Returns

The DependencyProperty class that has the properties parameterized according to the input parameters.

Applies to