I am using databinding in my winforms project, but setting the DataSource
property takes a few moments:
eventBindingSource.DataSource = _event;
I've tried setting the SuspendBinding()
and ResumeBinding()
methods, but this didn't make the binding faster.
Do you have any ideas to speed up the data binding?
Also when I edit a control, it goes very slow.
I am using Winforms, C# and the Entity Framework and _event
is a POCO class with about 20 properties.