请问如何知道还剩多少时间就会触发timer的tick事件?
C# code
private void button1_Click(object sender, EventArgs e)
{
timer1.Interval = 600000;//600 seconds
timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
//my code here...
}
每隔xxx秒,timer1_Tick就会被执行一次
因为timer1.Interval可能会被使用者修改,时间也可能很长,有没有什么办法可以知道还要等多少时间,下一次的tick就会被执行?
------解决方案--------------------