Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi,

I have created a page on windows phone 8.1 . i have to load the loading bezel on top of the page but at the background the page content should be visible.
Posted

1 solution

Umm, that's progress indicator in the system tray.
XML
<shell:SystemTray.ProgressIndicator>
    <shell:ProgressIndicator IsIndeterminate="True" Text="Loading"
                             IsVisible="{Binding Loading}" />
</shell:SystemTray.ProgressIndicator>

StatusBarProgressIndicator progressbar = StatusBar.GetForCurrentView().ProgressIndicator;
progressbar.Text = "Loading";
progressbar.ShowAsync();

Read this,
http://www.visuallylocated.com/post/2014/04/06/Showing-the-system-ProgressIndicator-in-a-Windows-Phone-81-XAML-app.aspx[^]

-KR
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900