From MSDN, it seems that Application.DoEvents() is available in Windows.Forms. What would be the equivalent thing in WPF.
You shouldn't be using it even in Windows Forms. Don't perform long-running tasks on the UI thread - use a background thread and use the Dispatcher
to update the UI as required. Any use of Application.DoEvents
is basically a code smell. I don't know whether there is an equivalent in WPF, but you should try to avoid it even if there is.