How to disable sort in DataGridView?

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

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

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-05 00:00

    If you want statically make columns not sortable. You can do this way

    1. Open the EditColumns window of the DataGridView control.
    2. Select the column you want to make not sortable on the left side pane.
    3. In the right side properties pane, select the Sort Mode property and select "Not Sortable" in that.

提交回复
热议问题