ContentPresenter.Background Proprietà

Definizione

Ottiene o imposta il pennello da applicare allo sfondo del contenuto gestito da 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>

Valore della proprietà

Pennello utilizzato come pennello di sfondo per il contenuto. Il valore predefinito è un pennello Null dal punto di vista del codice puro, ma per impostazione predefinita lo stile di sistema viene impostato su Bianco (per tema chiaro ) o Nero (per tema scuro ).

Si applica a