共用方式為


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 語法。 作為

ContentView已套用 ContentProperty 屬性,此 XAML 有效:
<ContentView>
<Label Text="Hello, Forms"/>
</ContentView>

這相當於下列更明確的 XAML

<ContentView>
<ContentView.Content>
<Label Text="Hello, Forms"/>
</ContentView.Content>
</ContentView>

建構函式

ContentPropertyAttribute(String)

初始化 ContentPropertyAttribute 類別的新執行個體。

屬性

Name

取得內容屬性的名稱

適用於