我DataGrid
处理大量数据(平均多达 40k 行),因此我需要进行大量虚拟化。
有时我需要选择某一列中的一大堆(如果不是全部)单元格,以共同更改它们的值。对于任何感兴趣的人,我通过单击列标题(通常对列进行排序)并调用以下方法来实现这一点:
private void SelectColumn(object sender, DataGridSortingEventArgs e)
{
if (MyDataGrid.SelectionUnit != DataGridSelectionUnit.FullRow)
{
DataGridColumn column = e.Column;
if (e.Column != null)
{
MyDataGrid.UnselectAllCells();
for (int i = 0; i < MyDataGrid.Items.Count; i++)
{
MyDataGrid.SelectedCells.Add(new DataGridCellInfo(MyDataGrid.Items[i], column));
}
// Set the first cell into editing mode
MyDataGrid.CurrentCell = MyDataGrid.SelectedCells[0];
}
}
}
编辑:对不起,我几乎忘了添加我的代码来设置所选单元格的值......:
private void MyDataGrid_CellEditEnding(object sender, DataGridCellEditEndingEventArgs e)
{
if (MyDataGrid.SelectedCells.Count > 1)
{ // More than 1 cell are selected
if (e.EditingElement.GetType() == typeof(TextBox))
{ // The cell being edited is of type TextBox
string value = ((TextBox)e.EditingElement).Text;
foreach (DataGridCellInfo cellInfo in MyDataGrid.SelectedCells)
{
DataGridCell gridCell = TryToFindGridCell(MyDataGrid, cellInfo);
if (gridCell != null) gridCell.Content = value; // ((TextBox)e.EditingElement).Text returns the Text in the cell sending DataGridCellEditEndingEventArgs e
}
}
}
}
static DataGridCell TryToFindGridCell(DataGrid grid, DataGridCellInfo cellInfo)
{
DataGridCell result = null;
DataGridRow row = (DataGridRow)grid.ItemContainerGenerator.ContainerFromItem(cellInfo.Item);
if (row != null)
{
int columnIndex = grid.Columns.IndexOf(cellInfo.Column);
if (columnIndex > -1)
{
DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(row);
result = presenter.ItemContainerGenerator.ContainerFromIndex(columnIndex) as DataGridCell;
}
}
return result;
}
如果所有选定的单元格都在我的 GUI 的可见区域内,这将非常有效。但是,由于外部的所有内容(以几行作为缓冲区)都被虚拟化,所以我遇到了问题。虚拟化的行并没有真正被选中,可见区域之外的任何单元格都不会与可见的单元格一起改变它们的值。
谁能指导我为此采取更好的方法?是的,我需要处理这么多数据,抱歉。;)