ListViewItem.BackColor Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
.NET