WPF DataGridをプログラムで並べ替える方法はありますか(たとえば、最初の列をクリックした場合など)。
このクリックをシミュレートする方法はありますか?または最良の方法?
これは私のコードです:
Collection_Evenements = new ObservableCollection<Evenement>();
Collection_Evenements = myEvenement.GetEvenementsForCliCode(App.obj_myClient.m_strCode);
Collection_Evenements.CollectionChanged += Collection_Evenements_CollectionChanged;
myDataGridEvenements.ItemsSource = Collection_Evenements;
System.Data.DataView dv = (System.Data.DataView)myDataGridEvenements.ItemsSource;
dv.Sort = "strEvtType";
myDataGridEvenements.Focus();
myDataGridEvenements.SelectedIndex = 0;
myDataGridEvenements.MoveFocus(new TraversalRequest(FocusNavigationDirection.Next));
理由はわかりませんが、「dv.Sort = "strEvtType";」という行私のウィンドウが表示され、プログラムが次の行を実行し続けないにもかかわらず、奇妙なことを引き起こしますが、ソートは表示されません!
どうもありがとう、
宜しくお願いします、
ニクセ
vooのソリューションは私にとってはうまくいきませんでした。ItemsSource
はnullでした。これはおそらく、直接設定されずにバインドされたためです。ここでStackOverflowで見つけた他のすべてのソリューションは、モデルのソートのみを処理していましたが、DataGrid
ヘッダーはソートに反映されていませんでした。
ここに不完全なスクリプトに基づいた適切なソリューションがあります: http://dotnetgui.blogspot.co.uk/2011/02/how-to-properly-sort-on-wpf-datagrid.html
public static void SortDataGrid(DataGrid dataGrid, int columnIndex = 0, ListSortDirection sortDirection = ListSortDirection.Ascending)
{
var column = dataGrid.Columns[columnIndex];
// Clear current sort descriptions
dataGrid.Items.SortDescriptions.Clear();
// Add the new sort description
dataGrid.Items.SortDescriptions.Add(new SortDescription(column.SortMemberPath, sortDirection));
// Apply sort
foreach (var col in dataGrid.Columns)
{
col.SortDirection = null;
}
column.SortDirection = sortDirection;
// Refresh items to display sort
dataGrid.Items.Refresh();
}
コードの場合、次のように使用できます。
SortDataGrid(myDataGridEvenements, 0, ListSortDirection.Ascending);
または、デフォルトのパラメーター値を使用して、単純に:
SortDataGrid(myDataGridEvenements);
ItemsSourceのDataViewを取得し、Sortプロパティを使用して、並べ替えの基準となる列を指定します。
(yourDataGrid.ItemsSource as DataView).Sort = "NAME_OF_COLUMN";
PerformSort DataGridのメソッドは、列のヘッダークリックで実際に実行されるものです。ただし、このメソッドは内部的なものです。したがって、本当にクリックをシミュレートしたい場合は、リフレクションを使用する必要があります。
public static void SortColumn(DataGrid dataGrid, int columnIndex)
{
var performSortMethod = typeof(DataGrid)
.GetMethod("PerformSort",
BindingFlags.Instance | BindingFlags.NonPublic);
performSortMethod?.Invoke(dataGrid, new[] { dataGrid.Columns[columnIndex] });
}
私の方法は私の仕事です。このコードを試してください。ロシア語でごめんなさい
// Если таблица пустая, то привязываем ее к журналу
if(dgEvents.ItemsSource == null)
dgEvents.ItemsSource = events.Entries;
// Обновляем записи
CollectionViewSource.GetDefaultView(dgEvents.ItemsSource).Refresh();
// Очищаем описание сортировки
dgEvents.Items.SortDescriptions.Clear();
// Созадем описание сортировки
dgEvents.Items.SortDescriptions.Add(new SortDescription(dgEvents.Columns[0].SortMemberPath, ListSortDirection.Descending));
// Очищаем сортировку всех столбцов
foreach (var col in dgEvents.Columns)
{
col.SortDirection = null;
}
// Задаем сортировку времени по убыванию (последняя запись вверху)
dgEvents.Columns[0].SortDirection = ListSortDirection.Descending;
// Обновляем записи
dgEvents.Items.Refresh();
ICollectionView を使用して、データグリッド内のアイテムをフィルター、並べ替え、グループ化できます。
編集:ソートを追加し、質問を注意深く読んでいない:)
var view = CollectionViewSource.GetDefaultView(this.MyData);
view.Filter = ViewFilter;
view.SortDescriptions.Add(new SortDescription("MyPropertyToSort", ListSortDirection.Descending));
private bool ViewFilter(object obj)
{
var item = obj as MyObject;
if (item == null)
return false;
//your filter logik goes here
if(item.MyStringProp.StartsWith("Test"))
return false;
return true;
}