Arrange Columns in a DataGridView

2020-08-09 09:50发布

问题:

I have a datagridview that is populated by a stored proc. Typically I would reorder the columns using the 'Edit Columns' dialog but this datagridview is being used to display data from different sources so I can't do that.

I have figured out how to rename the Headers and make certain columns Frozen but how do I change the display order on them?

回答1:

With the DisplayIndex property

myGridView.Columns["myFirstCol"].DisplayIndex = 0;
myGridView.Columns["mySecondCol"].DisplayIndex = 1;


回答2:

Can you set the DisplayIndex for the columns?



回答3:

 grid.AllowUserToOrderColumns = true;