This is a hard problem, as most “solutions” lead to lots of custom code, and lots of calls to BeginInvoke() or System.ComponentModel.BackgroundWorker (that is just a thin wrapper over BeginInvoke)
Also I have found in the past that you soon wish to delay sending your INotifyPropertyChanged events until the data is stable. The code that handles one propriety-changed event, often need to read other proprieties. You also often has a control that needs to redraw it’s self whenever the state of one of many properties changes, and you don’t wish the control the redraw it’s self too often.
Firstly each custom winforms control should read all data it needs to paint it’s self in the PropertyChanged event handler, so it does not need to lock any data objects when it was a WM_PAINT (OnPaint) message. The control should not immediately repaint it self when it gets new data, instead it should call Control.Invalidate(). Windows will combine the WM_PAINT messages into a few requests as possible and only send them when the UI thread has nothing else to do. This minimizes the number of redraws and the time the data objects are locked. (Standard controls mostly do this with data binding anyway)
The data objects need to record what has changed as the changes are made, then once a set of changes has been completed, “kick” the UI thread into calling the “SendChangeEvents” method that then calls the PropertyChanged event handler (On the UI thread) for all properties that have changed. While the SendChangeEvents() method is running, the data objects must be locked to stop the background thread(s) from updating them.
The UI thread can be “kicked” with a call to “BeginInvoke” whenever a set of update have bean read from the database. Often it is better to have the UI thread poll using a timer, as windows only sends the WM_TIMER message when the UI message queue is empty, hence leading to the UI feeling more responsive.
Also consider not using data binding at all, and having the UI ask each data object “what has change” each time the timer fires. Databinding always looks nice, but can quickly become “part of the problem, rather then part of the solution”.
As locking/unlock of the data-objects is a pain and may not allow the updates to be read from the database fast enough, you may wish to passed the UI thread a copy (virtual) of the data objects. Having the data object be Persistent/ Immutable that any changes to the data object returns a new data object rather then changing the current data object can enable this.
Persistent objects sound very slow, but need not be, see this and that for some pointer. Also look at this and that on Stack Overflow.
Also have a look at retlang - Message based concurrency in .NET it's message batching may be useful.
