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

ProgressIndicator显示进度条以及一些文字信息

时间:2014-09-25 00:31:47      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   ar   文件   sp   on   c   ad   

//ProgressIndicator可以显示进度条以及一些文字信息,不过这个属性一般都在cs文件中操作。
private void PhoneApplicationPage_Loaded(object sender, System.Windows.RoutedEventArgs e)
{
     private Microsoft.Phone.Shell.ProgressIndicator _progressIndicator = new Microsoft.Phone.Shell.ProgressIndicator();
     Microsoft.Phone.Shell.SystemTray.ProgressIndicator = _progressIndicator;
     _progressIndicator.Text = "加载中...";
     _progressIndicator.IsIndeterminate = true;
     _progressIndicator.IsVisible = true;
}

ProgressIndicator显示进度条以及一些文字信息

标签:style   io   os   ar   文件   sp   on   c   ad   

原文地址:http://www.cnblogs.com/qiuyueguangxuan/p/3991658.html

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