I am wondering if the windows 7 phone sdk comes with a marque progress bar? As far I can tell is that there is no marque styles so at the moment i just have a timer that updates the progress bar to emulate the style.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Although the phone UI guidelines dictate a specific “progress indicator” control as well, the ProgressBar with IsIndeterminate is nearly equivalent minus the text.
Do note that the standard ProgressBar built into the platform has a negative effect on the UI thread’s frame rate and should not be used.
Not that I want to self-promote, but I’ve published a template that can be used to move the exact same animation from the UI to the render thread in your application, significantly improving performance.
We wanted to find a way to get it into the release but it wasn’t easy given the lack of size-relative declarative animations in Silverlight.
http://www.jeff.wilcox.name/2010/08/performanceprogressbar/
Also, note that when you no longer need the animation, on top of collapsing the visual if you need to, please set IsIndeterminate to False to stop any storyboards that are running.