ContentPresenter.Background Propriété
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.
Obtient ou définit le pinceau à appliquer à l’arrière-plan du contenu géré par ContentPresenter.
public:
property Brush ^ Background { Brush ^ get(); void set(Brush ^ value); };
Brush Background();
void Background(Brush value);
public Brush Background { get; set; }
var brush = contentPresenter.background;
contentPresenter.background = brush;
Public Property Background As Brush
<ContentPresenter Background="{StaticResource resourceName}"/>
- or -
<ContentPresenter Background="colorString"/>
- or -
<ContentPresenter>
<ContentPresenter.Background>singleBrush</ContentPresenter.Background>
</ContentPresenter>
Valeur de propriété
Pinceau utilisé comme pinceau d’arrière-plan pour le contenu. La valeur par défaut est un pinceau Null du point de vue du code pur, mais les valeurs par défaut du style système définissent cette valeur sur Blanc (pour le thème Clair ) ou Noir (pour le thème Sombre ).