I want users to be able to modify columns width, order, pinned state, ... But at the same time, I have two grids in the same form one above the other and I would like to sync layout of both.
I have tried to use somthing like this, but it is not working:
foreach (var col in this.grid1.Columns)
{
this.grid2.Columns.Add(col);
}