How can I disable sort in DataGridView? I need to disable the header DataGridView sorting.
DataGridView
You can disable it in the ColumnAdded event:
private void dataGridView1_ColumnAdded(object sender, DataGridViewColumnEventArgs e) { dataGridView1.Columns[e.Column.Index].SortMode = DataGridViewColumnSortMode.NotSortable; }