TextElement.Foreground プロパティ

定義

この要素のコンテンツに適用する Brush を取得または設定します。

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>

プロパティ値

テキスト コンテンツに適用されるブラシ。 既定値は、Color 値 Black の SolidColorBrushです

注釈

[前景] の設定は、 LineBreak オブジェクトまたは InlineUIContainer オブジェクトには表示されません。

適用対象

こちらもご覧ください