Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do you call a looping progress bar?

Ok I'm just at a loss for what the correct terminology is for this. I'm looking for the correct name to call a progress bar that "loops". Instead of the standard progress bar that fills up from left to right to 100%, this looks exactly like the progress bar but a small portion of the fill color constantly loops, never filling the whole progress bar to 100%, basically making it an eternal progress bar similar to a Ajax loading image. Microsoft likes to use this progress bar in their dialogs now.

What do you call this thing so I can search for some controls, etc.? Does .Net have a control for this?

Thanks

like image 203
ScottN Avatar asked Jul 23 '09 19:07

ScottN


2 Answers

Indeterminate progress bar?

Java's JProgressBar specifically refers to "Indeterminate mode"

like image 183
Ionuț G. Stan Avatar answered Sep 24 '22 04:09

Ionuț G. Stan


I've always known a busy indicator that doesn't indicate relative progress as a "spinner". It may be a bar in this case, but it's the same thing.

like image 38
CaseyB Avatar answered Sep 23 '22 04:09

CaseyB