WPF Metro Styled Panel

Is there a way to create a Windows 8 ProgressBar in WPF?

I do not mean the rotation circle, I mean one animated (with blue dots):

http://blog.humann.info/image.axd?picture=2012%2f3%2fanimated_loader.gif

+4
source share
2 answers

This control is implemented in MahApps.Metro : MetroProgressBar strong> control.

Another - slightly different - loading control in this library that may interest you is ProgressRing .

+19
source

Just add the property IsIndeterminate = "True" to your progressbar tag in xaml

-3
source

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


All Articles