无限循环中的后台工作者

发布于 2024-10-15 08:50:49 字数 326 浏览 1 评论 0原文

除了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人如初 2024-10-22 08:50:49

这个问题和示例让我感到困惑,但我认为您要问的是如何使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文