Shape.Fill Proprietà

Definizione

Ottiene o imposta il pennello che disegna l'area interna della forma.

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>

Valore della proprietà

Pennello che disegna/riempie l'interno della forma. Il valore predefinito è Null, (un pennello Null) che viene valutato come Transparent per il rendering.

Si applica a

Vedi anche