Вы можете просто использовать этот метод расширения -
public static DataGridRow GetSelectedRow(this DataGrid grid)
{
return (DataGridRow)grid.ItemContainerGenerator.ContainerFromItem(grid.SelectedItem);
}
, и вы можете получить ячейку DataGrid по существующей строке и идентификатору столбца:
public static DataGridCell GetCell(this DataGrid grid, DataGridRow row, int column)
{
if (row != null)
{
DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(row);
if (presenter == null)
{
grid.ScrollIntoView(row, grid.Columns[column]);
presenter = GetVisualChild<DataGridCellsPresenter>(row);
}
DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
return cell;
}
return null;
}
grid.ScrollIntoView
isключ к выполнению этой работы, если DataGrid виртуализирован и требуемая ячейка в данный момент не отображается.
Проверьте эту ссылку для получения подробной информации - Получить строку и ячейку WPF DataGrid