Bindingsource is not suspending binding
问题 I have a form that displays custom details, one section being a list of bank accounts associated with the customer. This list is bound to it's own bindingsource, so when loading a customer I do: bsCustomer.DataSource = customer; bsCustomerAccounts.DataSource = customer.Accounts; I have an ObjectListView that is bound to bsCustomerAccounts . So far everything works fine. To edit a particular account, I double-click on it and open a separate form: using (var form = new CustomerAccountForm