在wpf中,怎样用progressbar
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在wpf中,怎样用progressbar相关的知识,希望对你有一定的参考价值。
怎样用设计器对进度条(连接数据库)进行控制
在wpf中好像没有timer这个控件,哪位高手知道用什么类呢
写得越详细越好
还是做不出来 是否有人可以举个列子 比如连接数据库的进度
private void Window_Loaded(object sender, RoutedEventArgs e)
Timer tmr = new Timer();
tmr.Interval = 100;
tmr.Enabled = true;
tmr.Tick += new EventHandler(tmr_Tick);
private void tmr_Tick(object sender, EventArgs e)
if (progressBar1.Value == progressBar1.Maximum) progressBar1.Value = 0;
progressBar1.Value++;
参考技术B wpf确实没有Timer控件,
用Storyboard模拟时钟控件,
以上是关于在wpf中,怎样用progressbar的主要内容,如果未能解决你的问题,请参考以下文章