c# timer示例
时间: 2023-08-27 08:05:39 浏览: 191
在C#中,有多种方式可以使用Timer类来实现定时器功能。其中包括System.Threading.Timer、System.Windows.Forms.Timer和System.Timers.Timer。\[1\]
下面是一个使用System.Windows.Forms.Timer的示例代码:
```csharp
using System;
using System.Windows.Forms;
namespace Timer1
{
public partial class Form1 : Form
{
public int systemCounter = 0;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// 设置Timer1控件可用
this.timer1.Enabled = false;
// 设置Timer1时间间隔
this.timer1.Interval = 1000;
}
private void btnStart_Click(object sender, EventArgs e)
{
this.timer1.Start();
}
private void btnStop_Click(object sender, EventArgs e)
{
this.timer1.Stop();
}
private void timer1_Tick(object sender, EventArgs e)
{
systemCounter += 1;
this.textBox1.Text = systemCounter.ToString().Trim();
}
}
}
```
在这个示例中,我们使用了System.Windows.Forms.Timer控件来实现定时器功能。在Form1_Load方法中,我们设置了Timer1的Enabled属性为false,表示初始状态下定时器是停止的,然后设置了时间间隔为1秒。在btnStart_Click方法中,我们调用timer1.Start()方法来启动定时器。在btnStop_Click方法中,我们调用timer1.Stop()方法来停止定时器。在timer1_Tick方法中,我们每次定时器触发时,将systemCounter加1,并将其显示在textBox1中。
这只是一个使用System.Windows.Forms.Timer的示例,你也可以根据需要选择其他Timer类来实现定时器功能。
#### 引用[.reference_title]
- *1* *2* *3* [C#三种定时器Timer详解](https://blog.csdn.net/qq_57798018/article/details/128243618)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文