fatih
fatih

Reputation: 73

windows phone 8.1 how to make a determinate circle progressbar

In Windows Phone 8.1, how can I modify the progressbar like the circle below? The ring should be determinate.

circle progressbar

Upvotes: 1

Views: 1834

Answers (1)

David Leitner
David Leitner

Reputation: 3382

You can use the ProgressRing. Take a look at this.

<ProgressRing x:Name="myProgressRing" IsActive="True" Height="90" Width="90" /> 

If you want to make it determinate look at this article.

Upvotes: 4

Related Questions