Reputation: 73
In Windows Phone 8.1, how can I modify the progressbar like the circle below? The ring should be determinate.
Upvotes: 1
Views: 1834
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