im making an app who have a counter and a progressbar representing the time left, so if the counter reaches its 50%, the progressbar value is 50. So far so good, I make a progressbar animation of counter total and go.
My question is: How can I make the progressbar thicker? The line itself is too small and the “principal attraction” of my app is the progressbar and I want to make it bigger. Have I to make a template and using another control? (Like using a rectangle visually). I tried changing the progressbar to a rectangle but I don’t know how to fill the 60% (e.g) of the rectangle.
Any ideas? Thank you!
This can be done in the progress bar’s style.
In the default progress bar’s style, you need to
say 30.
ProgressBarTrack and
ProgressBarIndicator to 24. They are
inside the ProgressBar’s ControlTemplate.
HorizontalThumb to 24. It’s inside
the PhoneProgressBarSliderStyle.
ConttrolTemplate, increase both the
Rectangle’s Width and Height to 24.
Here is all styles just in case.:)