I have a datagridview, which has columns that I can edit (with the EditMode property: EditOnEnter). I have this grid only to show data, because the values (without formatting, for calculations) I have in an array.
I need to capture the data that changed in the grid, to also modify the array. (And perform the calculations depend on the cell that changed). For this, what is closest to what I need is the CurrentCellDirtyStateChanged event. The problem is that I also get up the event as soon as I change the first number of the cell, otherwise it works well. But I have tried several things without success. Someone who knows how to do a workaround for this?