Shape.Fill 属性

定义

获取或设置画 ,用于绘制形状的内部区域。

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

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

属性值

绘制/填充形状内部的 画笔 。 默认值为 null, (null 画笔) 计算结果为 透明 呈现。

适用于

另请参阅