I'm looking for some advice on running certain methods on the WPF control asynchronously.
Our project updates the map frequently calling:
Refresh(Overlay)
The problem with doing this so often is that it locks up the rest of the application. We've tried as much as possible to run queries etc in a background worker, its just the map redrawing itself that takes the time.
My question is, is there any way we can call the Refresh method asynchronously in order to properly maintain a responsive UI for the user?