TextElement.Foreground Proprietà

Definizione

Ottiene o imposta il pennello da applicare al contenuto di questo elemento.

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

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

Valore della proprietà

Pennello applicato al contenuto di testo. Il valore predefinito è SolidColorBrush con valore ColorBlack.

Commenti

L'impostazione di Foreground non ha alcun effetto visibile per gli oggetti LineBreak o InlineUIContainer .

Si applica a

Vedi anche