user883434
user883434

Reputation: 727

Sleep inside for loop in wpf

I have been working with WPF and threading.

I would like to pause the whole screen (the application only) during a for loop.

E.g.

foreach (classA a in classesA)
{
....
....
Thread.sleep(100);

}

However, I found that it will sleep for long and then execute all the statement in a time. It is not what I want. I want to sleep within the execution of the for loop. That is to sleep 100ms after 1st loop, then sleep again after the 2nd loop.....

I found that some article mentioned DoEvents(), but I am not quite familiar with it and WPF seem don't have this kind of thing.

Some other articles mentioned DispatcherTimer. Still, it will not lock the screen. I would like to lock the whole screen (the application only) to prevent from clicking any button during the execution of the for loop.

How could I do so?

Thank you so much!

Upvotes: 1

Views: 2981

Answers (2)

Brian Gideon
Brian Gideon

Reputation: 48949

If you are willing to experiment to with the proposed async and await keywords you could achieve the sleep behavior with synchronous semantics like this. You would need to install the Async CTP to do it though.1

public aysnc void YourButton_Click(object sender, EventArgs args)
{
  foreach (classA a in classes)
  {
    await Task.Delay(100);
  }
}

1The Async CTP uses TaskEx instead of Task.

Upvotes: 0

brunnerh
brunnerh

Reputation: 184607

You must not block the UI-thread otherwise it cannot process its queue, which contains rendering the UI, if you want to block interaction with UI-elements set IsEnabled=false on a root element, then to do a non-blocking wait see this question.

Upvotes: 4

Related Questions