Good afternoon.
How to update the grid, after permutation of the columns?ColumnBase cb = grid.Columns [0];grid.Columns [0] = grid.Columns [1];grid.Columns [1] = cb;Thank you for your reply.
Thank you for your reply.Sam did so.Maybe there is still some way? Suppose grid.UpdateLayout ()?Thank you.
Hi Sergey,
If you want to exchange the places of the first two columns, the more appropriate way would be:
ColumnBase cb = grid.Columns [1];grid.Columns.Remove(cb);grid.Columns.Insert(0, cb);
Hope this helps,