I am trying to implement a very simple spreadsheet functionality based on a DataGrid.
(1) The user clicks on a cell
(2) The user types a value and presses return
(3) The current row is scanned and any cell formula that depends on the clicked cell is updated.
This seems to be the best event handler for my requirements:
private void my_dataGrid_CurrentCellChanged(object sender, EventArgs e)
How do I detect the row index of the current row?
TIA