ContentPropertyAttribute Clase
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Indica la propiedad del tipo que es la propiedad de contenido (predeterminada).
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
- Herencia
-
ContentPropertyAttribute
- Atributos
Comentarios
El procesador XAML usa para determinar la propiedad de contenido.
La decoración de tipos con ContentPropertyAttribute permite una sintaxis XAML más corta. As
<ContentView>
<Label Text="Hello, Forms"/>
</ContentView>
Esto equivale a lo siguiente, xaml más explícito
<ContentView>
<ContentView.Content>
<Label Text="Hello, Forms"/>
</ContentView.Content>
</ContentView>
Constructores
ContentPropertyAttribute(String) |
Inicializa una nueva instancia de la clase ContentPropertyAttribute. |
Propiedades
Name |
Obtiene el nombre de la propiedad de contenido |