When the user clicks the Delete button on a BindingNavigator, the delete occurs immediately.
I can arrange for the user to cancel the delete later, but that assumes the user realizes that a record was deleted in the first place, so I prefer to warn them when the button is clicked. I would like to display a dialog asking the user to confirm the delete operation before hand, and cancel the delete if the user does not confirm it. I have not identified a good way to do that.
The row is already deleted by the time the Click event on the button occurs.
The DataTable.RowDeleting event does not provide a Cancel property in DataRowChangeEventArgs.
Is there a way to trap this event