up vote 5 down vote favorite
1
share [g+] share [fb]

I'm using WPF datagrid which is bundled in WPF toolkit... the problem is I'm not able to align some column data to center

Please help me guys

link|improve this question

69% accept rate
For Silverlight, see this answer. – Drew Noakes Oct 27 '11 at 13:10
feedback

5 Answers

up vote 7 down vote accepted

It's hard to say without knowing specifics, but here's a DataGridTextColumn that is centered:

<wpf:DataGridTextColumn Header="Name" Binding="{Binding Name}" IsReadOnly="True">
    <wpf:DataGridTextColumn.CellStyle>
        <Style>
            <Setter Property="FrameworkElement.HorizontalAlignment" Value="Center"/>
        </Style>
    </wpf:DataGridTextColumn.CellStyle>
</wpf:DataGridTextColumn>
link|improve this answer
Worked great for me even in Dec 2010! – ErocM Dec 3 '10 at 3:27
1  
This approach didn't work for me. The text was centered, but the cell width no longer matched up with its header. Mohammed's solution worked best. – Kiff Mar 23 '11 at 13:52
As Kiff said, the cell is shifting too. You must target the Textblock like Mohammed A. Fadil exemple. – Philippe Lavoie May 2 '11 at 20:19
feedback

If you are using DataGridTextColumn you can use the following code snippet:

<Style TargetType="DataGridCell">
     <Style.Setters>
            <Setter Property="TextBlock.TextAlignment" Value="Center" />
     </Style.Setters>
</Style>
link|improve this answer
This is best way - setting alignment on the cell causes the cell not to fill its width, which looks odd when the row is selected – bruceboughton Dec 8 '11 at 10:07
feedback

+1 for Kent Boogaart. I ended up doing this, which makes the code slightly less cluttered (and enables me to use the alignment on several columns):

<Resources>
      <Style x:Key="NameCellStyle" TargetType="DataGridCell">
                <Setter Property="HorizontalAlignment" Value="Center" />
      </Style>
</Resources>


<DataGrid.Columns>                           
   <DataGridTextColumn Header="Name" CellStyle="{StaticResource NameCellStyle}" Binding="{Binding Name}"/>                            
    // .. other columns        
</DataGrid.Columns>
link|improve this answer
+1 for style, but for me HorizontalAlignment does not work whereas HorizontalContentAlignment does. – Emmanuel May 4 '11 at 8:42
feedback

Ok, I used the frameworkElement approach but there was a strange behavior when you try to highlight the row.

I've put another example of WPF Datagrid alignment in this thread!

link|improve this answer
feedback

My favorite solution is:

<DataGridTextColumn Header="My Column" Binding="{Binding MyDBValue}" Width="100" >
<DataGridTextColumn.CellStyle>
        <Style>
                <Setter Property="FrameworkElement.HorizontalAlignment" Value="Center"/>
        </Style>
</DataGridTextColumn.CellStyle>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.