Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ProgressBar without value, just loading

What do I need to do to create a progress bar like this using WinForms?

Progressbar

like image 555
Sorashi Avatar asked Sep 26 '12 13:09

Sorashi


1 Answers

It's called a marquee progress bar. Just use a regular ProgressBar and set:

myProgressBar.Style = ProgressBarStyle.Marquee;

and

myProgressBar.MarqueeAnimationSpeed = yourDesiredSpeed;
like image 102
Servy Avatar answered Sep 24 '22 15:09

Servy