建立計時器的例項

計時器用於以特定的時間間隔執行任務(每隔 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();
        }

    }