禁止點擊header 排序

http://stackoverflow.com/questions/3965304/disable-sorting-when-clicking-datagridview-column-header

http://stackoverflow.com/questions/4334983/best-way-to-disable-the-column-header-sorting-in-datagridview

http://stackoverflow.com/questions/4502442/how-to-disable-sort-in-datagridview


dgDataGridView1.Columns[0].SortMode = DataGridViewColumnSortMode.NotSortable;

或者:

 foreach (var column in dataGridView.Columns)
        {
            column.SortMode = sortMode;
        }

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章