Я сталкивался с этим вопросом, пытаясь решить, как полностью очистить сортировку от сетки.Спасибо Кришнаадитя за ответ, как убрать стрелку сортировки из заголовка.
using System.Windows.Data;
using System.ComponentModel;
ICollectionView view = CollectionViewSource.GetDefaultView(resultsGrid.ItemsSource);
if (view != null && view.SortDescriptions.Count>0)
{
view.SortDescriptions.Clear();
foreach (DataGridColumn column in resultsGrid.Columns)
{
column.SortDirection = null;
};
}