码迷,mamicode.com
首页 > 其他好文 > 详细

WP 8.1 status bar

时间:2014-09-09 22:49:49      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   strong   for   2014   sp   log   on   

A status bar is the bar showing signal, battery and time on the top of the phone‘s screen. In WP8.1 we it‘s called status bar, but in WP8.0 it‘s called phone shell.

 

Show progress bar in the status bar:

            var statusBar = Windows.UI.ViewManagement.StatusBar.GetForCurrentView();

 

            //statusBar.ProgressIndicator.ProgressValue = 0.5;

            statusBar.ProgressIndicator.Text = "loading";

 

            statusBar.ProgressIndicator.ShowAsync();

 

Hide progress bar in the status bar:

            var statusBar = Windows.UI.ViewManagement.StatusBar.GetForCurrentView();

 

            //statusBar.ProgressIndicator.ProgressValue = 0;

 

            statusBar.ProgressIndicator.HideAsync();

 

 

 

A useful link: http://blogs.msdn.com/b/amar/archive/2014/05/12/status-bar-in-windows-phone-8-1.aspx

WP 8.1 status bar

标签:blog   http   ar   strong   for   2014   sp   log   on   

原文地址:http://www.cnblogs.com/yibinpan/p/3963372.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!