Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make a marquee progress bar in WPF?

In Winforms I could set the ProgressBarStyle of a progress bar to Marqee, and that would have the progress bar incriment on its own without having to be set, for processes where I don't know how long its going to take, and no good way to report back to the UI.

I would like to do the same in WPF, but I can't find a way to pull it off short of hosting a winform progress bar, which seems counter productive.

How can I pull this off in WPF? Do I have to host a winform progress bar?

like image 895
Russ Avatar asked Mar 12 '09 13:03

Russ


People also ask

How use ProgressBar in WPF application?

The ProgressBar tag in XAML represents a WPF ProgressBar control. The Width and Height properties represent the width and the height of a ProgressBar. The Name property represents the name of the control, which is a unique identifier of a control.

What is marquee ProgressBar?

Marquee. Indicates progress by continuously scrolling a block across a ProgressBar in a marquee fashion. Use Marquee when you can't specify a quantity of progress, but still need to indicate that progress is being made. Use the MarqueeAnimationSpeed property to control the speed of the ProgressBar.


1 Answers

I think you simply want to set the IsIndeterminate property of the ProgressBar to true. (See this article, which also has a nice example of a fancy circular progress indicator.)

like image 163
Noldorin Avatar answered Sep 29 '22 02:09

Noldorin