如何在 C# winform 中每分钟自动调用一个方法
Posted
技术标签:
【中文标题】如何在 C# winform 中每分钟自动调用一个方法【英文标题】:how to call a method every min automactic in C# winform 【发布时间】:2017-09-25 14:43:36 【问题描述】:在 C# winform 中每 5 秒自动运行一个函数 当一个程序执行时我调用一个方法来加载我怎样才能把这段代码放在c#winform中
public void InitTimer()
timer1 = new Timer();
timer1.Tick += new EventHandler(timer1_Tick);
timer1.Interval = 200; // in milliseconds
timer1.Start();
private void timer1_Tick(object sender, EventArgs e)
MessageBox.Show("test");
【问题讨论】:
但是您的代码不起作用吗?您必须更改的一件事是到 5000(5 秒)的间隔。但除此之外,我不知道你到底有什么疑问 【参考方案1】:将 200 替换为 5000
public void InitTimer()
timer1 = new Timer();
timer1.Tick += new EventHandler(timer1_Tick);
timer1.Interval = 5000; // in milliseconds => 1 sec = 1000 millisec
timer1.Start();
private void timer1_Tick(object sender, EventArgs e)
MessageBox.Show("test");
【讨论】:
我知道,但我的问题是我把这个方法放在哪里,比如加载等...... 我不了解你的业务,但我建议在constructor
使用它【参考方案2】:
如果您使用 Visual Studio,请在工具框中将计时器拖到表单中,将时间间隔设置为 5000,将启用设置为 true。这将在加载时自动启动计时器,否则在表单加载中使用
timer1.Start();
这将在页面加载时启动计时器。
【讨论】:
以上是关于如何在 C# winform 中每分钟自动调用一个方法的主要内容,如果未能解决你的问题,请参考以下文章
C# .NET winform 打开指定(谷歌)浏览器,如何设置cookie 实现自动登录