Control.BackColor Propiedad
Definición
Obtiene o establece el color de fondo del control.Gets or sets the background color for the control.
public:
virtual property System::Drawing::Color BackColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public virtual System.Drawing.Color BackColor { get; set; }
member this.BackColor : System.Drawing.Color with get, set
Public Overridable Property BackColor As Color
Valor de propiedad
Objeto Color que representa el color de fondo del control.A Color that represents the background color of the control. El valor predeterminado es el valor de la propiedad DefaultBackColor.The default is the value of the DefaultBackColor property.
Ejemplos
En el ejemplo de código siguiente BackColor se establece el y ForeColor de los controles en los colores predeterminados del sistema.The following code example sets the BackColor and ForeColor of the controls to the default system colors. El código se llama a sí mismo de forma recursiva si el control tiene controles secundarios.The code recursively calls itself if the control has any child controls. Este ejemplo de código requiere que tenga un Form elemento con al menos un control secundario; sin embargo, un control contenedor secundario, como Panel o GroupBox , con sus propios controles secundarios mostraría mejor la recursividad.This code example requires that you have a Form with at least one child control; however, a child container control, like a Panel or GroupBox, with its own child control(s) would better demonstrate the recursion.
// Reset all the controls to the user's default Control color.
private:
void ResetAllControlsBackColor( Control^ control )
{
control->BackColor = SystemColors::Control;
control->ForeColor = SystemColors::ControlText;
if ( control->HasChildren )
{
// Recursively call this method for each child control.
IEnumerator^ myEnum = control->Controls->GetEnumerator();
while ( myEnum->MoveNext() )
{
Control^ childControl = safe_cast<Control^>(myEnum->Current);
ResetAllControlsBackColor( childControl );
}
}
}
// Reset all the controls to the user's default Control color.
private void ResetAllControlsBackColor(Control control)
{
control.BackColor = SystemColors.Control;
control.ForeColor = SystemColors.ControlText;
if(control.HasChildren)
{
// Recursively call this method for each child control.
foreach(Control childControl in control.Controls)
{
ResetAllControlsBackColor(childControl);
}
}
}
' Reset all the controls to the user's default Control color.
Private Sub ResetAllControlsBackColor(control As Control)
control.BackColor = SystemColors.Control
control.ForeColor = SystemColors.ControlText
If control.HasChildren Then
' Recursively call this method for each child control.
Dim childControl As Control
For Each childControl In control.Controls
ResetAllControlsBackColor(childControl)
Next childControl
End If
End Sub
Comentarios
La BackColor propiedad no admite colores transparentes a menos que el SupportsTransparentBackColor
valor de System.Windows.Forms.ControlStyles se establezca en true
.The BackColor property does not support transparent colors unless the SupportsTransparentBackColor
value of System.Windows.Forms.ControlStyles is set to true
.
La BackColor propiedad es una propiedad de ambiente.The BackColor property is an ambient property. Una propiedad de ambiente es una propiedad de control que, si no se establece, se recupera del control primario.An ambient property is a control property that, if not set, is retrieved from the parent control. Por ejemplo, un Button objeto tendrá el mismo BackColor elemento primario de Form forma predeterminada.For example, a Button will have the same BackColor as its parent Form by default. Para obtener más información sobre las propiedades de ambiente, vea la AmbientProperties clase o la Control información general de la clase.For more information about ambient properties, see the AmbientProperties class or the Control class overview.
Notas a los desarrolladores de herederos
Al reemplazar la BackColor propiedad en una clase derivada, utilice la propiedad de la clase base BackColor para extender la implementación base.When overriding the BackColor property in a derived class, use the base class's BackColor property to extend the base implementation. De lo contrario, debe proporcionar toda la implementación.Otherwise, you must provide all the implementation. No es necesario reemplazar los get
set
descriptores de acceso y de la BackColor propiedad; solo se puede reemplazar uno si es necesario.You are not required to override both the get
and set
accessors of the BackColor property; you can override only one if needed.