TextElement.Foreground Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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>
Property Value
The brush that is applied to the text content. The default is a SolidColorBrush with Color value Black.
Remarks
Setting Foreground has no visible effect for LineBreak or InlineUIContainer objects.