Skip to main content
A newer version of this page is available. .

DataControlBase.ColumnHeaderStyle Property

Gets or sets the column header’s style. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v18.2.dll

Declaration

public Style ColumnHeaderStyle { get; set; }

Property Value

Type Description
Windows.UI.Xaml.Style

A Windows.UI.Xaml.Style object that represents the column header’s style.

Remarks

Target type: DevExpress.UI.Xaml.Grid.BaseColumnHeaderControl

See the example below.

        <Style x:Key="CustomHeaderStyle" TargetType="dxg:BaseColumnHeaderControl">
            <Setter Property="Background" Value="Red"/>
            <Setter Property="Foreground" Value="Yellow"/>
        </Style>

Use the ColumnBase.ColumnHeaderStyle property to set the header style for independent columns.

See Also