Glyphs.Fill 属性

定义

获取或设置用于呈现字形的 Brush

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

void Fill(Brush value);
public Brush Fill { get; set; }
var brush = glyphs.fill;
glyphs.fill = brush;
Public Property Fill As Brush
<Glyphs Fill="{StaticResource resourceName"/>
- or -
<Glyphs Fill="colorString"/>
- or -
<Glyphs>
  <Glyphs.Fill>singleBrush</Glyphs.Fill>
</Glyphs>

属性值

用于呈现字形的画笔。 默认值为 null,计算结果为 “透明 ”以用于呈现。

注解

由于默认值为 null,因此如果你希望 字形 在 UI 中呈现,你几乎总是应该以某种方式为 Fill 定义一个值。

适用于

另请参阅