TextElement.Foreground 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置要应用于元素内容的画笔。
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
属性值
要应用于文本内容的画笔。 默认值为 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 实现值的字符串。 在代码中,附加属性用法由 GetForeground 和 SetForeground 方法支持。 附加属性用法并不常见,因为大多数元素可以包含在支持类似的非附加Foreground
属性中TextElement,内容主机使用该属性进行呈现。
依赖项属性信息
标识符字段 | ForegroundProperty |
元数据属性设置为 true |
AffectsRender、Inherits、SubPropertiesDoNotAffectRender |