我正在尝试从 1 分钟开始做一个简单的倒数计时器,它显示在按钮文本中。当按下按钮时,我只想让它倒计时到 0,显示“时间”。我一直在阅读我能找到的所有帖子,试图弄清楚如何做到这一点,但不能。有人可以告诉我我做错了什么。
这是在 Visual c# windows phone 应用程序中。我希望我的帖子正确显示,这是我第一次在这个网站上提问,我是新手。提前感谢您的任何建议。
void bTime_Click(object sender, RoutedEventArgs e)
{
DispatcherTimer timer1 = new DispatcherTimer();
timer1.Interval = TimeSpan.FromSeconds(60);
timer1.Tick += new EventHandler(timer_Tick);
timer1.Start();
}
int tik = 60;
void timer_Tick(object sender, EventArgs e)
{
bTime.Content = timer.ToString();
if (tik > 0)
Countdown.Text = (timer--).ToString();
else
Countdown.Text = "Times Up";
throw new NotImplementedException();
}