我在查找刚刚编辑的单元格的行和单元格索引时遇到问题DataGrid
。我正在使用CellEditEnding
事件来知道单元格何时被编辑。
到目前为止,我已经设法做这样的事情。Col1
包含属性DisplayIndex
,这是所选列的索引,但我无法以相同的方式找到。
private void DataGridData_CellEditEnding(object sender, DataGridCellEditEndingEventArgs e)
{
DataGridColumn col1 = e.Column;
DataGridRow row1 = e.Row;
}