wpf中使用ProgressBar
1.基本内容:
ProgressBar控件不能和用户进行交互,用的最多的就是复制文件。颜色设置中,Foreground是设置走动的进度的颜色,Background是设置背景颜色,FlowDirection是流动的方向,
有从左到右和从右到左。从左到右是最常见的,复制文件就是,从右到左一般在游戏中用的比较多,如某个英雄的血,开始满管,绿色,被攻击后从右向左由红到绿。
2.使用上定义委托(转自http://blog.csdn.net/hjm2046/article/details/6690689)
代码如下:
1 private delegate void UpdateProgressBarDelegate(System.Windows.DependencyProperty dp, Object value); 2 3 private void beginImport() 4 { 5 radProgressBar1.Maximum = 1000; 6 radProgressBar1.Value = 0; 7 8 UpdateProgressBarDelegate updatePbDelegate = new UpdateProgressBarDelegate(radProgressBar1.SetValue); 9 10 for (int i = 0; i < 1000; i++) 11 { 12 Dispatcher.Invoke(updatePbDelegate, System.Windows.Threading.DispatcherPriority.Background, new object[] { System.Windows.Controls.ProgressBar.ValueProperty,Convert.ToDouble( i + 1) }); 13 } 14 }