From MSDN, it seems that Application.DoEvents() is available in Windows.Forms. What would be the equivalent thing in WPF.

link|improve this question

Are you porting a legacy VB 6 application that uses DoEvents? Why do you think you need an equivalent to it? – Cody Gray Jul 21 '11 at 11:21
1  
There is no equivalent. Stop doing that. No. – Will Jul 21 '11 at 11:26
@Cody: No, I am not actually porting anything. I just needed the feature as described. – Shamim Hafiz Jul 22 '11 at 5:54
feedback

2 Answers

up vote 10 down vote accepted

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.

link|improve this answer
feedback

While i agree with the Skeet you can find a WPF method like that on the documentation page of the DispatcherFrame

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.