Panel.Background Proprietà

Definizione

Ottiene o imposta un Brush utilizzato per riempire l'area tra i bordi di un Panel.

public:
 property System::Windows::Media::Brush ^ Background { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
public System.Windows.Media.Brush Background { get; set; }
member this.Background : System.Windows.Media.Brush with get, set
Public Property Background As Brush

Valore della proprietà

Oggetto Brush. Questo valore predefinito è null.

Esempio

Nell'esempio seguente viene impostato l'oggetto Background di un Grid oggetto su .RadialGradientBrush

<Grid>
  <Grid.Background>
    <RadialGradientBrush 
        GradientOrigin="0.5,0.5" 
        Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5">
      <RadialGradientBrush.GradientStops>
        <GradientStop Color="Yellow" Offset="0" />
        <GradientStop Color="Red" Offset="0.25" />
        <GradientStop Color="Blue" Offset="0.75" />
        <GradientStop Color="Green" Offset="1" />
      </RadialGradientBrush.GradientStops>
    </RadialGradientBrush>
  </Grid.Background>
</Grid>

Commenti

Panel gli elementi non ricevono eventi del mouse o stilo se non è definito un Background oggetto . Se è necessario gestire gli eventi mouse o stilo, ma non si vuole uno sfondo per il Panel, usare Transparent.

Informazioni proprietà di dipendenza

Campo Identificatore BackgroundProperty
Proprietà dei metadati impostate su true AffectsRender, SubPropertiesDoNotAffectRender

Si applica a

Vedi anche