ListViewItem.BackColor Property

Definition

Gets or sets the background color of the item's text.

public:
 property System::Drawing::Color BackColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color BackColor { get; set; }
member this.BackColor : System.Drawing.Color with get, set
Public Property BackColor As Color

Property Value

A Color that represents the background color of the item's text.

Remarks

You can use the BackColor property to change the color displayed behind the item text. This property can be used if you want to use different background and foreground color combinations (using the ForeColor property to set the foreground color) to differentiate one item from another. For example, you could set the BackColor property to Red to identify items that have failed validation or are missing subitem information.

If you want to use the same background color for all subitems of an item, set the UseItemStyleForSubItems property to true. This will cause the colors and fonts specified for the item to be used for all subitem text.

Applies to

See also