ListView.BackColor Property (System.Web.UI.WebControls)

Switch View :
ScriptFree
.NET Framework Class Library
ListView.BackColor Property

Overrides the WebControl.BackColor property. Setting this property is not supported by the ListView control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)
Syntax

Visual Basic
<BrowsableAttribute(False)> _
Public Overrides Property BackColor As Color
C#
[BrowsableAttribute(false)]
public override Color BackColor { get; set; }
Visual C++
[BrowsableAttribute(false)]
public:
virtual property Color BackColor {
	Color get () override;
	void set (Color value) override;
}
F#
[<BrowsableAttribute(false)>]
abstract BackColor : Color with get, set
[<BrowsableAttribute(false)>]
override BackColor : Color with get, set
ASP.NET
<asp:ListView BackColor="Color" />

Property Value

Type: System.Drawing.Color
Color.Empty, which indicates that the property is not set.
Exceptions

Exception Condition
NotSupportedException

An attempt was made to set the BackColor property.

Remarks

Style properties are not supported by the ListView control. If you try to set the BackColor property, a NotSupportedException exception is thrown. If you get the property, it returns the default value of the corresponding property of the base class.

To style the ListView control, you must style the controls inside the ListView templates by using cascading style sheets (CSS) classes or inline style elements.

Version Information

.NET Framework

Supported in: 4, 3.5
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources