我想寫一個應用程序來顯示倒數計時器。當我按Home鍵退出應用程序或搜索按鈕時,定時器將停止,直到我回到應用程序。這是我的代碼:Windows Phone:如何讓計時器在退出應用程序後繼續運行?
public Page1()
{
InitializeComponent();
DispatcherTimer dispatcherTimer = new DispatcherTimer();
dispatcherTimer.Interval = new TimeSpan(0, 0, 0, 1, 0);
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Start();
}
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
//Till timer is greater than 0 show timer.
}
如何使用定時器的方式,它使甚至當我退出該應用程序計數(運行)?
你或許應該讀作[這個問題的答案與(http://stackoverflow.com/questions/13514064/how-to-run-application-in-background-in-windows-phone),這似乎覆蓋方式接近你要求的東西。 – Petesh