开发windows phone 应用程序时需要在一段指定的时间后执行某些函数,于是乎想到了通过DispatcherTimer类来实现,再在.Tick后面添加自己想要的事件 DispatcherTimer mytask = new DispatcherTimer(); public test() { InitializeComponent(); mytask = new System.Windows.Threading.DispatcherTimer(); mytask.Tick += new E…