How to make a column of Syncfusion.Windows.Controls.Grid.GridControl (WPF) sortable?

Posted by Lernkurve on Stack Overflow See other posts from Stack Overflow or by Lernkurve
Published on 2010-04-27T12:10:40Z Indexed on 2010/04/27 12:13 UTC
Read the original article Hit count: 480

Filed under:
|

This must be trivial, but I can't figure it out. What property of the GridControl do I have to set to make a column, say C1, alphabetically sortable?

GridControl grid = new GridControl();
grid.Model.ColumnCount = 10;
grid.Model.RowCount = 10;
grid.Model.ColumnWidths[0] = 50;
...
grid.???

Syncfusion GridContrl

© Stack Overflow or respective owner

Related posts about wpf-controls

Related posts about syncfusion