C# 定时器的使用

```

//// 将 Timer 定义为类的成员变量
private Timer myTimer;

//点击响应触发器
private void uiSwitch1_ValueChanged(object sender, bool value)
{
    if (uiSwitch1.Active) // 如果开关处于打开状态
    {
        // 启动定时器
        myTimer = new Timer();
        myTimer.Interval = 720000; // 设置间隔时间   毫秒
        myTimer.Tick += new EventHandler(myTimer_Tick);
        myTimer.Start();
        AppendText("服务启动中!" + "\r\n");
    }
    else
    {
        // 关闭定时器
        StopTimer();
    }
}

//触发器代码
private void myTimer_Tick(object sender, EventArgs e)
{
AppendText("服务启动完成!" + "\r\n");
upString();
AppendText("服务运行中..............!" + "\r\n");
}

posted @ 2024-09-03 16:38  长安626  阅读(10)  评论(0编辑  收藏  举报