开发windows phone 应用程序时需要在一段指定的时间后执行某些函数,于是乎想到了通过DispatcherTimer类来实现,再在.Tick后面添加自己想要的事件
DispatcherTimer mytask = new DispatcherTimer(); public test() { InitializeComponent(); mytask = new System.Windows.Threading.DispatcherTimer(); mytask.Tick += new EventHandler(myEvent); mytask.Interval = , , ); mytask.Start(); } void myEvent(object sender, EventArgs e) { //你需要执行的函数,比如。: NavigationService.Navigate(new Uri("/index.xaml", UriKind.Relative)); }