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 画笔) 该画笔的计算结果为 透明 呈现。

适用于

另请参阅