From MSDN, it seems that Application.DoEvents() is available in Windows.Forms. What would be the equivalent thing in WPF.
|
feedback
|
|
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 | |||
|
feedback
|
|
While i agree with the Skeet you can find a WPF method like that on the documentation page of the | |||
|
feedback
|
DoEvents? Why do you think you need an equivalent to it? – Cody Gray Jul 21 '11 at 11:21