protected void AddSortDescription(SortDescription sort, bool withReset = false) { if (withReset) { ItemsView.SortDescriptions.Clear(); } ItemsView.SortDescriptions.Add(sort); ItemsView.RefreshSorting(); }
protected void ResetSort() { ItemsView.SortDescriptions.Clear(); ItemsView.RefreshSorting(); }