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 ブラシ) で、レンダリングでは Transparent と評価されます。

適用対象

こちらもご覧ください