Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is possible to have spinning progress indicator control in windows phone 8 development? Please provide us sample to achieve the same.

Thanks in advance.

share|improve this question
Do u have any idea to try the Third party controls.. syncfusion.com/products/windows-phone – David Bekham Jan 16 at 6:19
what have you tried? – Shivan Raptor Jan 16 at 6:19
No. We are trying to use native controls than third party controls. – Kathir Jan 16 at 11:14

closed as not a real question by Shivan Raptor, KooKiz, Sjoerd, Gajotres, Richard Schneider Jan 16 at 10:53

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Spinner UIs aren't part of the native user experience for windows phone and would look weird and out of place on WP7/WP8. Considerusing an indeterminate progressbar at the top of the page to indicate a pending action.

The google term you're lookign for is SystemTray.ProgresIndicator. Example @ http://blog.duc.as/2011/10/08/using-the-system-tray-to-show-progress-in-windows-phone-7-mango/

<shell:SystemTray.ProgressIndicator>
    <shell:ProgressIndicator IsIndeterminate="true" IsVisible="True" Text="Click me..." />
</shell:SystemTray.ProgressIndicator>
ProgressIndicator progress = new ProgressIndicator
{
    IsVisible = true,
    IsIndeterminate = true,
    Text = "Downloading details..."
};
SystemTray.SetProgressIndicator(this, progress);
share|improve this answer
We got the design as we expected. Please check this url for your references .windowsphonegeek.com/articles/… – Kathir Jan 17 at 6:02

Here's the documentation and example to build a custom indeterminate progress bar on your own. The example is still with rectangles, but can be adapted to whatever you want:

http://msdn.microsoft.com/en-us/library/windowsphone/develop/gg442303%28v=vs.105%29.aspx

share|improve this answer
We got the design as we expected. Please check this url for your references .windowsphonegeek.com/articles/… – Kathir Jan 17 at 6:01

Not the answer you're looking for? Browse other questions tagged or ask your own question.