ContentPresenter.Foreground Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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 ).