无限循环中的backgroundworker

时间:2011-02-02 00:09:49

标签: doevents

doevent()之外,另一种方式是,在此无限循环中运行另一个控件。

我想和背景工作者一起做,但我失败了。

    private void button1_Click(object sender, EventArgs e)
    {
        while (true)
        {
          Application.DoEvents();         //how i can use the backgrondworker in this place
        }
    }

1 个答案:

答案 0 :(得分:1)

问题和样本对我来说很困惑,但我认为你问的是如何使用BackgroundWorker类。

此类的Documentation非常有用,并且底部有示例代码。