Glyphs.Fill 属性

定义

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

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,因此如果希望 Glyphs 在 UI 中呈现,则几乎始终应该以某种方式为 Fill 定义一个值。

适用于

另请参阅