标签: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