DependencyProperty.RegisterAttached 方法

定义

初始化 DependencyProperty 类的新实例,它根据输入参数将属性参数化。

重载

RegisterAttached(String, Type, Type)

初始化 DependencyProperty 类的新实例,它根据输入参数将属性参数化。 此实例旨在声明在对象上使用的属性而不是所属类型的对象。

RegisterAttached(String, Type, Type, PropertyMetadata)

初始化 DependencyProperty 类的新实例,它根据输入参数将属性参数化。

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

初始化 DependencyProperty 类的新实例,它根据输入参数将属性参数化。

RegisterAttached(String, Type, Type)

初始化 DependencyProperty 类的新实例,它根据输入参数将属性参数化。 此实例旨在声明在对象上使用的属性而不是所属类型的对象。

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

参数

name
String

DependencyProperty 的名称。

propertyType
Type

属性可以包含的值的 Type

ownerType
Type

依赖属性的所有者 Type

返回

DependencyProperty

根据输入参数将属性参数化的 DependencyProperty 类。

适用于

RegisterAttached(String, Type, Type, PropertyMetadata)

初始化 DependencyProperty 类的新实例,它根据输入参数将属性参数化。

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

参数

name
String

DependencyProperty 的名称。

propertyType
Type

属性可以包含的值的 Type

ownerType
Type

依赖属性的所有者 Type

defaultMetadata
PropertyMetadata

附加属性选项。

返回

DependencyProperty

根据输入参数将属性参数化的 DependencyProperty 类。

适用于

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

初始化 DependencyProperty 类的新实例,它根据输入参数将属性参数化。

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

参数

name
String

DependencyProperty 的名称。

propertyType
Type

属性可以包含的值的 Type

ownerType
Type

依赖属性的所有者 Type

defaultMetadata
PropertyMetadata

附加属性选项。

validatorType
Type

实现附加属性的验证逻辑的对象的 Type

返回

DependencyProperty

根据输入参数将属性参数化的 DependencyProperty 类。

适用于