Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在我的 Windows 手机上构建一个小应用程序,但调度程序计时器出现问题。
每次加载页面时,调度程序都会在另一个时间运行。
基本上我有一个倒计时,当用户返回主页时(倒计时),调度程序计时器再次运行,这意味着倒计时的速度是两倍。
基本上 DispatcherTimer 是一个创建新线程的类。因此,当您的页面重新加载时,它会创建一个新线程。因此,建议您在每次离开该类时处理 DispatcherTimer 类。
DispatcherTimer timer=new DispatcherTimer(); //OnNavigatedFrom(EventArgs e) { timer=null; }