我已经包含了System.Timers
包,但是当我输入时:
Timer.Elapsed; //its not working, the property elapsed is just not there.
我记得它存在于VB.NET中。为什么这不起作用?
答案 0 :(得分:28)
这不是财产。 It's an event
所以你必须提供一个事件处理程序,它将在每次计时器滴答时执行。像这样:
public void CreateTimer()
{
var timer = new System.Timers.Timer(1000); // fire every 1 second
timer.Elapsed += HandleTimerElapsed;
}
public void HandleTimerElapsed(object sender, ElapsedEventArgs e)
{
// do whatever it is that you need to do on a timer
}
答案 1 :(得分:4)
微软的例子。 http://msdn.microsoft.com/en-us/library/system.timers.timer.elapsed.aspx
Elapsed是一个事件,因此需要一个事件处理程序。
using System;
using System.Timers;
public class Timer1
{
private static System.Timers.Timer aTimer;
public static void Main()
{
// Create a timer with a ten second interval.
aTimer = new System.Timers.Timer(10000);
// Hook up the Elapsed event for the timer.
aTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
// Set the Interval to 2 seconds (2000 milliseconds).
aTimer.Interval = 2000;
aTimer.Enabled = true;
Console.WriteLine("Press the Enter key to exit the program.");
Console.ReadLine();
}
// Specify what you want to happen when the Elapsed event is
// raised.
private static void OnTimedEvent(object source, ElapsedEventArgs e)
{
Console.WriteLine("The Elapsed event was raised at {0}", e.SignalTime);
}
}
/* This code example produces output similar to the following:
Press the Enter key to exit the program.
The Elapsed event was raised at 5/20/2007 8:42:27 PM
The Elapsed event was raised at 5/20/2007 8:42:29 PM
The Elapsed event was raised at 5/20/2007 8:42:31 PM
...
*/
答案 2 :(得分:0)
您需要一个事件处理程序,然后在分配事件处理程序的同时启用并在您的处理程序中停止条件
-------------------------------------------------
name | id1 | id2
-------------------------------------------------
aaa | 4 | 10
...................
Timer = new System.Timers.Timer();
Timer.Elapsed += new System.Timers.ElapsedEventHandler(PageLoaded);
Timer.Interval = 3000;
Timer.Enabled = true;