Irakli Lekishvili
Irakli Lekishvili

Reputation: 34178

WPF C#. need simple help about progress bar

I never used progress bar. Searched in internet but could not find something useful. So i wanna to make progress bar like this:

enter image description here

which must work 10 seconds i think it must easy. Thanks.

Upvotes: 2

Views: 1923

Answers (2)

IanR
IanR

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

JK.
JK.

Reputation: 5136

WPF: IsIndeterminate

progressBar.IsIndeterminate = true;

WinForms: Style Marquee:

progressBar.Style = ProgressBarStyle.Marquee;

Upvotes: 4

Related Questions