ContentPropertyAttribute 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
(기본값) 콘텐츠 속성인 형식의 속성을 나타냅니다.
public ref class ContentPropertyAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)]
public sealed class ContentPropertyAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false, Inherited=true)>]
type ContentPropertyAttribute = class
inherit Attribute
Public NotInheritable Class ContentPropertyAttribute
Inherits Attribute
- 상속
-
ContentPropertyAttribute
- 특성
설명
XAML 프로세서는 콘텐츠 속성을 결정하는 데 사용합니다.
ContentPropertyAttribute를 사용하여 형식을 데코레이팅하면 XAML 구문을 더 짧게 지정할 수 있습니다. As
ContentViewContentProperty 특성이 적용 되었으므로이 XAML은 유효 합니다.
<ContentView>
<Label Text="Hello, Forms"/>
</ContentView>
이는 보다 명시적인 다음 XAML과 동일합니다.
<ContentView>
<ContentView.Content>
<Label Text="Hello, Forms"/>
</ContentView.Content>
</ContentView>
생성자
ContentPropertyAttribute(String) |
ContentPropertyAttribute 클래스의 새 인스턴스를 초기화합니다. |
속성
Name |
콘텐츠 속성의 이름을 가져옵니다. |