How can I disable sort in DataGridView? I need to disable the header DataGridView sorting.
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.