本文介绍了Visual Studio 2012中的计时器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 好的,所以即时创建一个WPF应用程序,我有一个启动画面。 我在spash屏幕上放了一个进度条和一个计时器,所以下一个窗口显示计时器何时结束。 但是因为visual studio 2012没有计时器工具我不能这样做。 任何人都有办法吗?Ok, so im creating an WPF app and i have a splash screen.I'm putting a progress bar on the spash screen and a timer so the next windows shows when the timer ends.But because visual studio 2012 doesn't have a timer tool i cannot do it.Anyone have a way to do it?推荐答案 System.Windows.Threading.DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);dispatcherTimer.Interval = new TimeSpan(0,0,1);dispatcherTimer.Start();private void dispatcherTimer_Tick(object sender, EventArgs e){ //Timer code goes here} 这篇关于Visual Studio 2012中的计时器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-23 09:08