1
Answer

TextChange Event in DataGridView Control C#

Photo of Ajeet Singh

Ajeet Singh

7y
4.1k
1
I have a DataGridView containing TextBox cells. Is there an event that raises immediately after text change within a cell ?
 
I tried such events as CellValueChanged, CurrentCellDirtyStateChanged, TextChanged ( the last was used with help of EditingControlShowing event for DataGridView). All of them give some delay before the handler starts executing, for example they wait until I change focus from one cell to another. I want the handler to react right after the text changes.

Answers (1)