Moving progress bar don't show percentage in C # wpf

I am currently developing a C # application using WPF. It will be difficult to explain, but I will give it back.

What I want to do is create a progress bar. The progress bar will not show the percentage of progress achieved, but simply must continue to move the panel from left to right in a loop, like what windows do when it calculates how long it takes to transfer a large file before it actually makes a copy.

How can I do this and not show a normal progress bar.

Thanks for your help in this.

+3
source share
1 answer

ProgressBar.IsIndeterminate

ProgressBar p = new ProgressBar();
p.IsIndeterminate = true;
+10
source

Source: https://habr.com/ru/post/1782833/


All Articles