问题
I have a DataGridView
with three columns, start time, end time and duration. When a user edits the start or end time, the duration gets updated programmatically.
I'd like to capture the event that is fired when that duration column gets updated in their respective cell, since I want to do a little visual effect by animating the background colour of that cell, showing it was updated programmatically. My DataGridView
is not in virtual mode.
Does an event like that exist?
The CellValueChanged
event is only fired on user edit.
来源:https://stackoverflow.com/questions/59533784/what-is-the-datagridview-event-that-is-fired-when-a-cell-value-is-changed-progra