Hello,
is it possible to end edit when user navigates to other cell? The same behavior as standard DataGridView:
I tried to call EndEdit in CurrentCellChanged event handler, but it doesn't work, probably there is something with current cell changing, nor IsInEditMode is not set in this event.
One more comment, maybe this behavior could be ok for me, even if it's different to my previous projects, but I have one problem with this. I use CellBeginEdit event for validation, if user can edit some particular cell (because it's not possible to set ReadOnly on cell level), but with this behavior, CellBeginEdit is fired only for first cell, and after navigating to other cell, I don't have possibility to cancel edit. So alternative question, how can I solve this?