up vote 0 down vote favorite
share [g+] share [fb]

My application uses the WPF DataGrid control with custom columns. Although the property Columns is an ObservableCollection<>, the invocation of the method Move does not effect the order of the columns in any way.

Can I somehow reorder the columns of a WPF Toolkit DataGrid programmatically?

Best Regards
Oliver Hanappi

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can use the DisplayIndex property of a DataGridColumn (use datagrid.Columns to retrieve the columns collection).

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.