It seems that the WinForms DataGridView control does not provide a simple method of preventing a row / cell change, which is a little inconvenient right now for me...
Basically, I have a Master-Detail form with two DataGridViews, together with the concept of a View Mode (simple enough) and Edit Mode (basically means you can edit...). When wanting to make changes, the user is required to go into edit mode, make their changes, commit / cancel and then come back to view mode. Simples, yes?
What I am trying do is to prevent the user, when in edit mode, moving to a new master record. I want the user to work one master record at a time, so my plan on doing this was to hook up to some nice BeforeCurrentRowChange event and cancel the change if we were in Edit mode. No such luck.
I can sort of implement something using the CurrentCellChanged event by maintaining the previous row in state somewhere, but this would still see all other other events (like EnterRow / Leave Row etc) fire, which I would prefer to avoid.
Any ideas?