user763554
user763554

Reputation: 2041

How to right align text in a DataGrid column header in xaml?

I have a WPF DataGrid with a column header as follows:

<DataGridTemplateColumn Header="Length" Width="100">
     ...
</DataGridTemplateColumn>

How do I make this header align right? Thanks. I know how to align the column content. Emphasis is aligning COLUMN HEADER.

Upvotes: 16

Views: 21745

Answers (2)

synergetic
synergetic

Reputation: 8026

H.B's answer is correct; just add one more line:

<DataGridTextColumn.HeaderStyle>
    <Style TargetType="{x:Type DataGridColumnHeader}">
      <Setter Property="HorizontalAlignment" Value="Stretch"/>
      <Setter Property="HorizontalContentAlignment" Value="Right"/>
    </Style>
</DataGridTextColumn.HeaderStyle>

Upvotes: 7

brunnerh
brunnerh

Reputation: 184306

Set the HorizontalContentAlignment of the header using the HeaderStyle:

<DataGridTemplateColumn.HeaderStyle>
    <Style TargetType="DataGridColumnHeader">
        <Setter Property="HorizontalContentAlignment" Value="Right"/>
    </Style>
</DataGridTemplateColumn.HeaderStyle>

Upvotes: 28

Related Questions