ContentPropertyAttribute Classe
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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
<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 |