How to disable sort in DataGridView?

前端 未结 9 673
孤城傲影
孤城傲影 2020-12-04 23:35

How can I disable sort in DataGridView? I need to disable the header DataGridView sorting.

9条回答
  •  不知归路
    2020-12-04 23:57

    If you can extend the DataGridView you can override the Sort method with am empty one. This disables Sort for the DataGridView entirely.

    public override void Sort(DataGridViewColumn dataGridViewColumn, ListSortDirection direction)
    {
        //base.Sort(dataGridViewColumn, direction);
    }
    

    Note: You cannot even programmatically sort any column.

提交回复
热议问题