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 クラス。

適用対象

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 クラス。

適用対象

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 クラス。

適用対象