Reputation: 34178
I never used progress bar. Searched in internet but could not find something useful. So i wanna to make progress bar like this:
which must work 10 seconds i think it must easy. Thanks.
Upvotes: 2
Views: 1923
Reputation: 4803
In WPF you'd set the IsIndeterminate property of the ProgressBar to true to get the effect you want. However, I don't think it provides a simple property for controlling the speed of it. You'd probably have to re-template the progress bar or something.
Upvotes: 2
Reputation: 5136
WPF: IsIndeterminate
progressBar.IsIndeterminate = true;
WinForms: Style Marquee
:
progressBar.Style = ProgressBarStyle.Marquee;
Upvotes: 4