progress bar in separate window

Posted by Kelly on Stack Overflow See other posts from Stack Overflow or by Kelly
Published on 2011-02-07T22:50:05Z Indexed on 2011/02/07 23:25 UTC
Read the original article Hit count: 230

Filed under:
|
|

(WPF) We have been asked to build a little window that pops up when the app is busy (instead of or in addition to a wait cursor). We put a textblock in the window, and a ProgressBar with IsIndeterminate = true.

We call show on the little window, and then start up our long-running process, calling Close on the little window when we are through. However, during the long-running process, the ProgressBar does not show any activity, and the little window shows (Not Responding) in its title.

Is this even possible? A better idea?

© Stack Overflow or respective owner

Related posts about c#

Related posts about wpf