创建计时器的实例
计时器用于以特定的时间间隔执行任务(每隔 Y 秒执行一次)下面是创建计时器的新实例的示例。
注意 :这适用于使用 WinForms 的计时器。如果使用 WPF,你可能需要查看 DispatcherTimer
using System.Windows.Forms; //Timers use the Windows.Forms namespace
public partial class Form1 : Form
{
Timer myTimer = new Timer(); //create an instance of Timer named myTimer
public Form1()
{
InitializeComponent();
}
}