vote up 2 vote down star

Hi all,

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

flag

80% accept rate

2 Answers

vote up 3 vote down check

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>

HTH, Kent

link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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