ContentPropertyAttribute Classe
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Indique la propriété du type qui est la propriété de contenu (par défaut).
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
- Héritage
-
ContentPropertyAttribute
- Attributs
Remarques
Le processeur XAML utilise pour déterminer la propriété de contenu.
La décoration de types avec ContentPropertyAttribute permet une syntaxe XAML plus courte. As
<ContentView>
<Label Text="Hello, Forms"/>
</ContentView>
Cela équivaut à ce qui suit, xaml plus explicite
<ContentView>
<ContentView.Content>
<Label Text="Hello, Forms"/>
</ContentView.Content>
</ContentView>
Constructeurs
ContentPropertyAttribute(String) |
Initialise une nouvelle instance de la classe ContentPropertyAttribute. |
Propriétés
Name |
Obtient le nom de la propriété de contenu. |