I have a control that has its data bound to a standard ObservableCollection, and I have a background task that calls a service to get more data.
ObservableCollection
I want
Use this:
Dispatcher.CurrentDispatcher.Invoke(DispatcherPriority.Render, new Action(UpdateData), value); private void UpdateData(int value) { BindingSourceProperty = value; }