Control.Background Propiedad

Definición

Obtiene o establece un pincel que describe el fondo de un control.

public:
 property System::Windows::Media::Brush ^ Background { System::Windows::Media::Brush ^ get(); void set(System::Windows::Media::Brush ^ value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Media.Brush Background { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Background : System.Windows.Media.Brush with get, set
Public Property Background As Brush

Valor de propiedad

Brush

El pincel que se utiliza para rellenar el fondo del control. De manera predeterminada, es Transparent.

Atributos

Ejemplos

En el ejemplo siguiente se muestra cómo establecer la propiedad background de un control.

<Button Name="btn" Background="Red" 
        Click="ChangeBackground">
  Background
</Button>
void ChangeBackground(object sender, RoutedEventArgs e)
{
    if (btn.Background == Brushes.Red)
    {
        btn.Background = new LinearGradientBrush(Colors.LightBlue, Colors.SlateBlue, 90);
        btn.Content = "Control background changes from red to a blue gradient.";
    }
    else
    {
        btn.Background = Brushes.Red;
        btn.Content = "Background";
    }
}
Private Sub ChangeBackground(ByVal Sender As Object, ByVal e As RoutedEventArgs)

    If (Equals(btn.Background, Brushes.Red)) Then

        btn.Background = New LinearGradientBrush(Colors.LightBlue, Colors.SlateBlue, 90)
        btn.Content = "Control background changes from red to a blue gradient."

    Else

        btn.Background = Brushes.Red
        btn.Content = "Background"

    End If
End Sub

En el ejemplo siguiente se muestra una plantilla que permite a un desencadenador cambiar el fondo de un botón cuando se presiona.

<Button FontSize="16" FontWeight="Bold">Click the Background
  <Button.Template>
    <ControlTemplate TargetType="{x:Type Button}">
      <Border Background="{TemplateBinding Background}">
         <ContentPresenter/>
      </Border>
    </ControlTemplate>
  </Button.Template>

  <Button.Style>
    <Style TargetType="{x:Type Button}">
      <Setter Property="Background" Value="Blue"/>
      <Style.Triggers>
        <Trigger Property="IsPressed" Value="true">
          <Setter Property="Background" Value="Red"/>
        </Trigger>
      </Style.Triggers>
    </Style>
  </Button.Style>
</Button>

Comentarios

La Background propiedad solo se aplica al estado de reposo de un control. El estilo predeterminado del control especifica su apariencia cuando cambia el estado del control. Por ejemplo, si establece la Background propiedad en un Button, el botón solo tiene ese valor cuando no está presionado o deshabilitado. Si desea crear un control que tenga una personalización más avanzada del fondo, debe definir el estilo del control.

Esta propiedad solo afecta a un control cuya plantilla usa la Background propiedad como parámetro. En otros controles, esta propiedad no tiene ningún impacto.

Información sobre propiedades de dependencia

Campo identificador BackgroundProperty
Propiedades de metadatos establecidas en true AffectsRender, SubPropertiesDoNotAffectRender

Se aplica a