BindableAttribute 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
C++에 정의된 형식을 바인딩에 사용할 수 있도록 지정합니다.
public ref class BindableAttribute sealed : Attribute
/// [Windows.Foundation.Metadata.AttributeUsage(System.AttributeTargets.RuntimeClass)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
class BindableAttribute final : Attribute
/// [Windows.Foundation.Metadata.AttributeUsage(System.AttributeTargets.RuntimeClass)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.AttributeName("bindable")]
class BindableAttribute final : Attribute
[Windows.Foundation.Metadata.AttributeUsage(System.AttributeTargets.RuntimeClass)]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public sealed class BindableAttribute : Attribute
[Windows.Foundation.Metadata.AttributeUsage(System.AttributeTargets.RuntimeClass)]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.AttributeName("bindable")]
public sealed class BindableAttribute : Attribute
Public NotInheritable Class BindableAttribute
Inherits Attribute
- 상속
-
BindableAttribute
- 특성
Windows 요구 사항
디바이스 패밀리 |
Windows 10 (10.0.10240.0에서 도입되었습니다.)
|
API contract |
Windows.Foundation.UniversalApiContract (v1.0에서 도입되었습니다.)
|
예제
다음 코드 예제에서는 이 특성의 일반적인 사용 패턴을 보여 줍니다. 전체 코드 목록은 XAML 데이터 바인딩 샘플을 참조하세요.
C++/WinRT를 사용하는 경우 {Binding} 태그 확장을 사용하는 경우에만 BindableAttribute를 추가해야 합니다. {x:Bind} 태그 확장을 사용하는 경우 BindableAttribute가 필요하지 않습니다(자세한 내용은 XAML 컨트롤, C++/WinRT 속성에 바인딩 참조).
// MyColors.idl
namespace MyColorsApp
{
[bindable]
[default_interface]
runtimeclass MyColors : Windows.UI.Xaml.Data.INotifyPropertyChanged
{
MyColors();
Windows.UI.Xaml.Media.SolidColorBrush Brush1;
}
}
[Windows::UI::Xaml::Data::Bindable]
public ref class Employee sealed : Windows::UI::Xaml::Data::INotifyPropertyChanged
{
// ...
}
설명
이 특성을 C++기반 데이터 클래스에 적용하여 바인딩 원본으로 사용할 수 있도록 합니다. C# 및 Microsoft Visual Basic에 정의된 모든 형식을 포함하여 CLR(공용 언어 런타임) 형식은 기본적으로 바인딩할 수 있습니다. ICustomPropertyProvider를 구현하여 형식을 바인딩할 수 있도록 만들 수도 있습니다. 자세한 내용은 데이터 바인딩 심층 분석을 참조하세요.
생성자
BindableAttribute() |
BindableAttribute 클래스의 새 instance 초기화합니다. |