TextElement.Foreground 属性

定义

获取或设置要应用于元素内容的画笔。

public:
 property System::Windows::Media::Brush ^ Foreground { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
public System.Windows.Media.Brush Foreground { get; set; }
member this.Foreground : System.Windows.Media.Brush with get, set
Public Property Foreground As Brush

属性值

Brush

要应用于文本内容的画笔。 默认值为 Black

示例

以下示例演示如何使用Paragraph示例元素设置Foreground属性。

<FlowDocumentReader>
  <FlowDocument>
    <Paragraph
      Background="Bisque"
      Foreground="DarkGreen"
      Padding="4"
    >
      <Run>
        This text has a foreground color of dark green, and a background color of bisque.
      </Run>
    </Paragraph>
  </FlowDocument>
</FlowDocumentReader>

下图显示了上述示例的呈现方式。

屏幕快照:前景为绿色,背景为橘黄色

下面的示例演示如何以编程方式设置 Foreground 属性。

Run run = new Run(
    "This text has a foreground color of dark green, and a background color of bisque.");
Paragraph par = new Paragraph(run);

par.Background = Brushes.Bisque;
par.Foreground = Brushes.DarkGreen;
Dim run As New Run("This text has a foreground color of dark green, and a background color of bisque.")
Dim par As New Paragraph(run)

par.Background = Brushes.Bisque
par.Foreground = Brushes.DarkGreen

注解

有关显示可用预定义画笔颜色的表,请参阅 Brushes

此依赖属性还具有附加的属性用法。 在 XAML 中,用法是 <object TextElement.Foreground="value".../>对象是对象 元素, (通常包含流元素) TextElement 是解析为 Brush 实现值的字符串。 在代码中,附加属性用法由 GetForegroundSetForeground 方法支持。 附加属性用法并不常见,因为大多数元素可以包含在支持类似的非附加Foreground属性中TextElement,内容主机使用该属性进行呈现。

依赖项属性信息

标识符字段 ForegroundProperty
元数据属性设置为 true AffectsRenderInheritsSubPropertiesDoNotAffectRender

适用于

另请参阅