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 |
コンテンツ プロパティの名前を取得します |