ToolStripItem.BackColor Propiedad
Definición
Obtiene o establece el color de fondo del elemento.Gets or sets the background color for the item.
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
Color que representa el color de fondo del elemento.A Color that represents the background color of the item. 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 se muestra cómo BackColor utilizar la propiedad para la representación personalizada.The following code example demonstrates how to use the BackColor property for custom rendering. Este ejemplo de código forma parte de un ejemplo más extenso proporcionado ToolStripItem para la clase.This code example is part of a larger example provided for the ToolStripItem class.
protected override void OnRenderItemImage(
ToolStripItemImageRenderEventArgs e)
{
base.OnRenderItemImage(e);
RolloverItem item = e.Item as RolloverItem;
// If the ToolSTripItem is of type RolloverItem,
// perform custom rendering for the image.
if (item != null)
{
if (item.Clicked)
{
// The item is in the clicked state, so
// draw the image as usual.
e.Graphics.DrawImage(
e.Image,
e.ImageRectangle.X,
e.ImageRectangle.Y);
}
else
{
// In the unclicked state, gray out the image.
ControlPaint.DrawImageDisabled(
e.Graphics,
e.Image,
e.ImageRectangle.X,
e.ImageRectangle.Y,
item.BackColor);
}
}
}
Protected Overrides Sub OnRenderItemImage(ByVal e As ToolStripItemImageRenderEventArgs)
MyBase.OnRenderItemImage(e)
Dim item As RolloverItem = CType(e.Item, RolloverItem)
' If the ToolSTripItem is of type RolloverItem,
' perform custom rendering for the image.
If (item IsNot Nothing) Then
If item.Clicked Then
' The item is in the clicked state, so
' draw the image as usual.
e.Graphics.DrawImage(e.Image, e.ImageRectangle.X, e.ImageRectangle.Y)
Else
' In the unclicked state, gray out the image.
ControlPaint.DrawImageDisabled(e.Graphics, e.Image, e.ImageRectangle.X, e.ImageRectangle.Y, item.BackColor)
End If
End If
End Sub
Comentarios
La BackColor propiedad no admite colores transparentes a menos SupportsTransparentBackColor
que el System.Windows.Forms.ControlStyles valor de se true
establezca en.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 tiene el BackColor mismo valor que Form su elemento primario de forma predeterminada.For example, a Button has the same BackColor as its parent Form by default. Para obtener más información sobre las propiedades de ambiente AmbientProperties , vea la Control clase o la 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 BackColor la clase base 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
descriptores de acceso y set
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.