DependencyProperty.Register 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
종속성 속성을 등록합니다.
오버로드
Register(String, Type, Type) |
지정된 속성 이름, 속성 형식 및 소유자 유형을 사용하여 종속성 속성을 등록합니다. |
Register(String, Type, Type, PropertyMetadata) |
지정된 속성 이름, 속성 형식, 소유자 유형 및 속성 메타데이터를 사용하여 종속성 속성을 등록합니다. |
Register(String, Type, Type, PropertyMetadata, ValidateValueCallback) |
속성에 대해 지정된 속성 이름, 속성 형식, 소유자 유형, 속성 메타데이터 및 값 유효성 검사 콜백을 사용하여 종속성 속성을 등록합니다. |
Register(String, Type, Type)
지정된 속성 이름, 속성 형식 및 소유자 유형을 사용하여 종속성 속성을 등록합니다.
public:
static System::Windows::DependencyProperty ^ Register(System::String ^ name, Type ^ propertyType, Type ^ ownerType);
public static System.Windows.DependencyProperty Register (string name, Type propertyType, Type ownerType);
static member Register : string * Type * Type -> System.Windows.DependencyProperty
Public Shared Function Register (name As String, propertyType As Type, ownerType As Type) As DependencyProperty
매개 변수
- name
- String
등록할 종속성 속성의 이름입니다. 이름은은 소유자 형식의 등록 네임스페이스 내에서 고유해야 합니다.
- propertyType
- Type
속성의 형식입니다.
- ownerType
- Type
종속성 속성을 등록하는 소유자 유형입니다.
반환
클래스에서 public static readonly
필드의 값을 설정하는 데 사용해야 하는 종속성 속성 식별자입니다. 해당 식별자는 나중에 해당 값을 프로그래밍 방식으로 설정하거나 메타데이터를 가져오는 등의 작업에서 종속성 속성을 참조하는 데 사용됩니다.
예제
public static readonly DependencyProperty IsDirtyProperty = DependencyProperty.Register(
"IsDirty",
typeof(Boolean),
typeof(AquariumObject3)
);
Public Shared ReadOnly IsDirtyProperty As DependencyProperty = DependencyProperty.Register("IsDirty", GetType(Boolean), GetType(AquariumObject3))
설명
종속성 속성 등록에 대 한 자세한 내용은 참조 하세요. DependencyProperty합니다.
추가 정보
적용 대상
Register(String, Type, Type, PropertyMetadata)
지정된 속성 이름, 속성 형식, 소유자 유형 및 속성 메타데이터를 사용하여 종속성 속성을 등록합니다.
public:
static System::Windows::DependencyProperty ^ Register(System::String ^ name, Type ^ propertyType, Type ^ ownerType, System::Windows::PropertyMetadata ^ typeMetadata);
public static System.Windows.DependencyProperty Register (string name, Type propertyType, Type ownerType, System.Windows.PropertyMetadata typeMetadata);
static member Register : string * Type * Type * System.Windows.PropertyMetadata -> System.Windows.DependencyProperty
Public Shared Function Register (name As String, propertyType As Type, ownerType As Type, typeMetadata As PropertyMetadata) As DependencyProperty
매개 변수
- name
- String
등록할 종속성 속성의 이름입니다.
- propertyType
- Type
속성의 형식입니다.
- ownerType
- Type
종속성 속성을 등록하는 소유자 유형입니다.
- typeMetadata
- PropertyMetadata
종속성 속성의 속성 메타데이터입니다.
반환
클래스에서 public static readonly
필드의 값을 설정하는 데 사용해야 하는 종속성 속성 식별자입니다. 해당 식별자는 나중에 해당 값을 프로그래밍 방식으로 설정하거나 메타데이터를 가져오는 등의 작업에서 종속성 속성을 참조하는 데 사용됩니다.
설명
종속성 속성 등록에 대 한 자세한 내용은 참조 하세요. DependencyProperty합니다.
추가 정보
적용 대상
Register(String, Type, Type, PropertyMetadata, ValidateValueCallback)
속성에 대해 지정된 속성 이름, 속성 형식, 소유자 유형, 속성 메타데이터 및 값 유효성 검사 콜백을 사용하여 종속성 속성을 등록합니다.
public:
static System::Windows::DependencyProperty ^ Register(System::String ^ name, Type ^ propertyType, Type ^ ownerType, System::Windows::PropertyMetadata ^ typeMetadata, System::Windows::ValidateValueCallback ^ validateValueCallback);
public static System.Windows.DependencyProperty Register (string name, Type propertyType, Type ownerType, System.Windows.PropertyMetadata typeMetadata, System.Windows.ValidateValueCallback validateValueCallback);
static member Register : string * Type * Type * System.Windows.PropertyMetadata * System.Windows.ValidateValueCallback -> System.Windows.DependencyProperty
Public Shared Function Register (name As String, propertyType As Type, ownerType As Type, typeMetadata As PropertyMetadata, validateValueCallback As ValidateValueCallback) As DependencyProperty
매개 변수
- name
- String
등록할 종속성 속성의 이름입니다.
- propertyType
- Type
속성의 형식입니다.
- ownerType
- Type
종속성 속성을 등록하는 소유자 유형입니다.
- typeMetadata
- PropertyMetadata
종속성 속성의 속성 메타데이터입니다.
- validateValueCallback
- ValidateValueCallback
일반적인 형식 유효성 검사 이외에 종속성 속성 값의 사용자 지정 유효성 검사를 수행하는 콜백에 대한 참조입니다.
반환
클래스에서 public static readonly
필드의 값을 설정하는 데 사용해야 하는 종속성 속성 식별자입니다. 해당 식별자는 나중에 해당 값을 프로그래밍 방식으로 설정하거나 메타데이터를 가져오는 등의 작업에서 종속성 속성을 참조하는 데 사용됩니다.
예제
다음 예에서는 유효성 검사 콜백을 포함 하 여 종속성 속성을 등록 (콜백 정의 표시 되지 않으면 콜백 정의에 대 한 세부 정보를 참조 하세요. ValidateValueCallback).
public static readonly DependencyProperty CurrentReadingProperty = DependencyProperty.Register(
"CurrentReading",
typeof(double),
typeof(Gauge),
new FrameworkPropertyMetadata(
Double.NaN,
FrameworkPropertyMetadataOptions.AffectsMeasure,
new PropertyChangedCallback(OnCurrentReadingChanged),
new CoerceValueCallback(CoerceCurrentReading)
),
new ValidateValueCallback(IsValidReading)
);
public double CurrentReading
{
get { return (double)GetValue(CurrentReadingProperty); }
set { SetValue(CurrentReadingProperty, value); }
}
Public Shared ReadOnly CurrentReadingProperty As DependencyProperty =
DependencyProperty.Register("CurrentReading",
GetType(Double), GetType(Gauge),
New FrameworkPropertyMetadata(Double.NaN,
FrameworkPropertyMetadataOptions.AffectsMeasure,
New PropertyChangedCallback(AddressOf OnCurrentReadingChanged),
New CoerceValueCallback(AddressOf CoerceCurrentReading)),
New ValidateValueCallback(AddressOf IsValidReading))
Public Property CurrentReading() As Double
Get
Return CDbl(GetValue(CurrentReadingProperty))
End Get
Set(ByVal value As Double)
SetValue(CurrentReadingProperty, value)
End Set
End Property
설명
종속성 속성 등록에 대 한 자세한 내용은 참조 하세요. DependencyProperty합니다.