Reputation: 545
I am constructing a windows 8 app and I wanted to change my progress ring to be pictures or icons instead of the dots like regular rings are.
Anyone have any ideas on how to go about coding this in c# or xaml?
Upvotes: 0
Views: 486
Reputation: 11832
You need to use the default ProgressRing style with Control Template and change in the way you want it. As you can see this style has 6 ellipses which represent the dots in Progress Ring. You will need to change each of them to whatever you want: Images or Rectangles or something else. Take a look on this article Quickstart: styling controls (Windows Store apps using C#/VB/C++ and XAML)
Upvotes: 2