I have a bindingsource which has a datasource which is a datatable.
All the winforms controls has added databindings to the bindingsource
I do a value change in the GUI (writes to the controls' .text property)
then on Save i do following
bsSending.EndEdit();
((DataRowView)this.bsSending.Current).Row)
now contains the new values, but the RowState
is still unchanged. How can this be possible? I haven't any calls to AcceptChanges()
before I make the value changes in the GUI
see IsCurrentRowDirty