Name列を含むいくつかの列を持つWPFアプリにDataGrid
があります。ユーザーが特定のビューに切り替えた場合、データを名前で事前に並べ替えます(ユーザーがそのヘッダーをクリックした場合と同じように、名前のヘッダーに並べ替え矢印を表示します)。しかし、これを実現するために期待されるプロパティが見つかりません。 SortColumn
、SortColumnIndex
、SortDirection
などのようなものを探していました。
マークアップ(XAML)でデフォルトのソート列と方向を指定することは可能ですか、それともWPFツールキットDataGrid
でサポートされていませんか?
WPF Toolkit DataGridコントロールについて話していると仮定すると、必要なのは CanUserSortColumnsプロパティ をtrueに設定してから、DataGridの各DataGridColumnの SortMemberPathプロパティ を設定するだけです。
最初にコレクションを並べ替える限り、CollectionViewSourceを使用して並べ替えを設定し、それをDataGridのItemsSourceとして割り当てる必要があります。 XAMLでこれを行う場合は、次のように簡単です。
<Window.Resources>
<CollectionViewSource x:Key="MyItemsViewSource" Source="{Binding MyItems}">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="MyPropertyName"/>
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</Window.Resources>
<DataGrid ItemsSource="{StaticResource MyItemsViewSource}">
</DataGrid>
注: "scm"名前空間プレフィックスは、SortDescriptionクラスが存在するSystem.ComponentModelにマップします。
xmlns:scm="clr-namespace:System.ComponentModel;Assembly=WindowsBase"
編集:十分な数の人がこの投稿から助けを得たと思うので、この投票にコメントをこの回答に含める必要があります。
これを機能させるには、これを使用する必要がありました。
<DataGrid ItemsSource="{Binding Source={StaticResource MyItemsViewSource}}">
私はこれが古い投稿であることを知っていますが、Drew Marshの回答に加えて、DanMの列ヘッダーの矢印が表示されない問題への対応として、DataGridColumnにSortDirectionプロパティを追加する必要があります。
<DataGridTextColumn Header="Name" Binding="{Binding Name}" SortDirection="Ascending" />
私はこれについて質問を投稿し、数日後に答えを見つけました:
ItemsSourceがCollectionViewSource例外をサポートしていないことがわかったら、次のように、DataGridのDataContextを 'MyItemsViewSource'として、ItemsSourceを{Binding}として設定できます。
<DataGrid DataContext="{StaticResource MyItemsViewSource}" ItemsSource="{Binding}">
</DataGrid>
ItemsSource doesn't support CollectionViewSource
例外、DataGridを参照する前に、Linqでコレクションを並べ替えることができます。
ObservableCollection<MyDataClass> myCollection = new ObservableCollection<MyDataClass>();
dataGrid.ItemsSource = from item in myCollection orderby item select item;
IComparable
へのMyDataClass
インターフェースを実装する必要があります:
public class MyDataClass : IComparable<MyDataClass> {
public int CompareTo(Classified other) {
return other.Value.CompareTo(this.Value); // DESC
return this.Value.CompareTo(other.Value); // ASC
}
}
これでうまくいきます。
ListSortDirection sortDirection;
int selectedColumnIndex;
private void customerDataGrid_Sorting(object sender, DataGridSortingEventArgs e)
{
selectedColumnIndex = e.Column.DisplayIndex;
sortDirection = (e.Column.SortDirection == ListSortDirection.Ascending ? ListSortDirection.Descending: ListSortDirection.Ascending);
}
private void applySortDescriptions(ListSortDirection listSortDirection)
{
//Clear current sort descriptions
customerDataGrid.Items.SortDescriptions.Clear();
//Get property name to apply sort based on desired column
string propertyName = customerDataGrid.Columns[selectedColumnIndex].SortMemberPath;
//Add the new sort description
customerDataGrid.Items.SortDescriptions.Add(new SortDescription(propertyName, listSortDirection));
//apply sort
applySortDirection(listSortDirection);
//refresh items to display sort
customerDataGrid.Items.Refresh();
}
private void applySortDirection(ListSortDirection listSortDirection)
{
customerDataGrid.Columns[selectedColumnIndex].SortDirection = listSortDirection;
}