WinForms binding
- by Anthony
I have some controls bound to a BindingSource control.
I want to do a calculation when the value changes in one control and set the result on another control.
Do i update the textbox the property is bound to or do i update the underlying entity which would update the control anyway(i hope)?
When i change textbox A...textbox B is updated with the new calculated result..this works fine...but i have noticed that when i Leave textbox A..textbox B reverts back to its original value...what is going on here!