DataGridView.EnableHeadersVisualStyles Property

Definition

Gets or sets a value indicating whether row and column headers use the visual styles of the user's current theme if visual styles are enabled for the application.

C#
public bool EnableHeadersVisualStyles { get; set; }

Property Value

true if visual styles are enabled for the headers; otherwise, false. The default value is true.

Examples

The following code example demonstrates how to disable visual styles for the row and column headers in an application that has visual styles enabled. In this example, visual styles have been enabled for the application by calling the EnableVisualStyles method in Main. However, visual styles will not be applied to the row and column headers because EnableHeadersVisualStyles is set to false. This code example is part of a larger example provided for the DataGridViewAdvancedBorderStyle class.

C#
public CustomDataGridView()
{
    this.RowTemplate = new DataGridViewCustomRow();
    this.Columns.Add(new DataGridViewCustomColumn());
    this.Columns.Add(new DataGridViewCustomColumn());
    this.Columns.Add(new DataGridViewCustomColumn());
    this.RowCount = 4;
    this.EnableHeadersVisualStyles = false;
    this.AutoSize = true;
}

Remarks

You can enable visual styles for your application by calling the Application.EnableVisualStyles method before calling the Application.Run method. If EnableHeadersVisualStyles is set to true, all header cells except the TopLeftHeaderCell are painted using the current theme.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also