ContentPresenter.Foreground Proprietà

Definizione

Ottiene o imposta il pennello da applicare al contenuto di testo gestito da ContentPresenter.

public:
 property Brush ^ Foreground { Brush ^ get(); void set(Brush ^ value); };
Brush Foreground();

void Foreground(Brush value);
public Brush Foreground { get; set; }
var brush = contentPresenter.foreground;
contentPresenter.foreground = brush;
Public Property Foreground As Brush
<ContentPresenter Foreground="{StaticResource resourceName}"/>
- or -
<ContentPresenter Foreground="colorString"/>
- or -
<ContentPresenter>
  <ContentPresenter.Foreground>singleBrush</ContentPresenter.Foreground>
</ContentPresenter>

Valore della proprietà

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

Si applica a

Vedi anche