次の方法で共有


ContentPropertyAttribute クラス

定義

(既定の) コンテンツ プロパティである型のプロパティを示します。

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

コンテンツ プロパティの名前を取得します

適用対象