Compartilhar via


ContentPropertyAttribute Classe

Definição

Indica a propriedade do tipo que é a propriedade de conteúdo (padrão).

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
Herança
ContentPropertyAttribute
Atributos

Comentários

O processador XAML usa para determinar a propriedade de conteúdo.

Decorar tipos com ContentPropertyAttribute permite sintaxe XAML mais curta. As

ContentViewtem um atributo ContentProperty aplicado, este XAML é válido:
<ContentView>
<Label Text="Hello, Forms"/>
</ContentView>

Isso é equivalente ao XAML mais explícito a seguir

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

Construtores

ContentPropertyAttribute(String)

Inicializa uma nova instância da classe ContentPropertyAttribute.

Propriedades

Name

Obtém o nome da propriedade de conteúdo

Aplica-se a