获取DataGrid中的所有单元格(Get all cells in datagrid)

2019-07-30 13:16发布

有没有办法让一个DataGrid的所有细胞的可重复的集合,无论他们是否选择或不

Answer 1:

如果你的意思DataGridCell是你可以用文森特Sibals辅助功能遍历所有行DataGrid.Items和列DataGrid.Columns

public DataGridCell GetCell(int row, int column)
{
    DataGridRow rowContainer = GetRow(row);

    if (rowContainer != null)
    {
        DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer);

        // try to get the cell but it may possibly be virtualized
        DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
        if (cell == null)
        {
            // now try to bring into view and retreive the cell
            DataGrid_Standard.ScrollIntoView(rowContainer, DataGrid_Standard.Columns[column]);
            cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
        }
        return cell;
    }
    return null;
}

public DataGridRow GetRow(int index)
{
    DataGridRow row = (DataGridRow)DataGrid_Standard.ItemContainerGenerator.ContainerFromIndex(index);
    if (row == null)
    {
        // may be virtualized, bring into view and try again
        DataGrid_Standard.ScrollIntoView(DataGrid_Standard.Items[index]);
        row = (DataGridRow)DataGrid_Standard.ItemContainerGenerator.ContainerFromIndex(index);
    }
    return row;
}

编辑

如果电网是你的DataGrid你喜欢这一切DataGridCells的列表:

List<DataGridCell> allCellList = new List<DataGridCell>();

for (int i = 0; i < grid.Items.Count; i++)
{
    for (int j = 0; j < grid.Columns.Count; j++)
    {
        allCellList.Add(grid.GetCell(i, j));
    }
}


Answer 2:

为了方便起见(不一定性能)时,可以填充数据(包括来自所有列和行中的所有细胞)从数据网格到一个DataTable,它提供的功能,以帮助操作数据,如迭代,过滤,排序等。

// Populate a DataGrid to a DataTable
DataTable dt; 
DataView dv = (DataView) myDataGrid.DataSource;
dt = dv.Table.DataSet.Tables[0];

随后,您可以将任何一个特定的列的集合或列表使用泛型在短短一行代码。 见怎么办-你-转换-A-数据表-到-一个泛型列表 :

List<DataRow> myList = dt.Rows.Cast<DataRow>().ToList();

这样可以节省你从编写循环。



Answer 3:

要解决由线抛出的错误...

    DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter> 
        (rowContainer);

添加这个程序:

private T GetVisualChild<T>(DataGridRow rowContainer)
    {
        throw new NotImplementedException();
    }


文章来源: Get all cells in datagrid