无限循环中的后台工作者
除了 doevent()
是另一种方式,在这个无限循环中运行表单中的另一个控件。
我想用backgroundworker来做,但失败了。
private void button1_Click(object sender, EventArgs e)
{
while (true)
{
Application.DoEvents(); //how i can use the backgrondworker in this place
}
}
Except doevent()
is another way that, in this infinite loop run another control in form.
I wanted to do it with backgroundworker, but I failed.
private void button1_Click(object sender, EventArgs e)
{
while (true)
{
Application.DoEvents(); //how i can use the backgrondworker in this place
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题和示例让我感到困惑,但我认为您要问的是如何使用 BackgroundWorker 类。
此类的文档非常有用并且有示例代码向底部。
The question and sample are confusing to me but what I think you are asking is how to use the BackgroundWorker class.
The Documentation for this class is pretty helpful and has sample code towards the bottom.