Skip to main content

ColumnBase.HeaderStyle Property

Gets or sets the style applied to the column header. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Grid

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public Style HeaderStyle { get; set; }

Property Value

Type Description
Style

A Style object that contains style settings.

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 DataControlBase.ColumnHeaderStyle property to set the header style for all columns.

See Also