Panel.Background Propriedade

Definição

Obtém ou define um Brush que é usado para preencher a área entre as bordas de um 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

Valor da propriedade

Um Brush. O valor padrão é null.

Exemplos

O exemplo a seguir define o Background de um Grid como um 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>

Comentários

Panel os elementos não receberão eventos de mouse ou caneta se um Background não estiver definido. Se você precisar manipular eventos de mouse ou caneta, mas não quiser um plano de fundo para seu Panel, use Transparent.

Informações da propriedade de dependência

Campo Identificador BackgroundProperty
Propriedades de metadados definidas como true AffectsRender, SubPropertiesDoNotAffectRender

Aplica-se a

Confira também