I need help on implementing a circular progress bar like this:
![]()
How should I implement the Circle to fill by increasing Value property?
|
I need help on implementing a circular progress bar like this:
How should I implement the Circle to fill by increasing
| ||||
|
feedback
|
|
You have a couple of options - the first is to template the ProgressBa control. This turns out to be a little tricky. I wrote a blog post which describes how to use an attached ViewModel to achieve the required effect. The other alternative is to create your own control from scratch. You could do the following:
| |||||||||||
feedback
|
|
Have you looked at ValueConverters? You can bind to the Value property in the template using 'TemplateBinding' and use an appropriate value converter to change the value to whats is useful for a Circular progress bar. EDIT: In the template:
| |||||||||||
feedback
|