In the winforms we have a property called continuous that will show the progress bar from 0 till it hits 100.
I was looking for the same effect in WPF but from what I searched it leaded me to change the IsIndeterminate to true which doesnt give me the continuous effect only a weird effect of the part of the progressbar walking around.
To display an example of what I am talking about, the below image represents the continuous effect I am after:
Back to the question, how do I do that in WPF ?
ProgressBar
does by default without settingIsIndeterminate
? Also, a continuous progress bar is an indeterminate progress bar. Perhaps take a look at this Windows UX guideline for more info on determinate vs indeterminate. – BoltClock♦