Does WinForm UserControl inherit BindingContext of owner?

  • Thread starter Thread starter David Adams
  • Start date Start date
D

David Adams

Hi,

Does a usercontrol placed on a form automatically inherit or acquire the
parent forms' BindingContext?

Thanks,
Dave
 
For every distinct data source in use on a form, Windows Forms creates a
binding manager. It actually does this per binding context, not per form,
however each form has one binding context.
 
I should also add, by default all controls that are bound to the same source
share the same binding manager.
 
Back
Top