0

我一直在尝试许多不同的事情,但无法让这段代码正常工作。我停止后台工作人员然后关闭窗口的代码。

protected override void OnFormClosing(FormClosingEventArgs e)
    {
        if (bw.IsBusy)
        {
            bw.CancelAsync();
            e.Cancel = true;
            MessageBox.Show("close"); //Does show
            return;
        }
        base.OnFormClosing(e);
    }

在 bw 工人期间

if (worker.CancellationPending)
        {
            MessageBox.Show("Cancel"); // Does not show
            //Cancel
            e.Cancel = true;
        }

在已完成的后台工作人员上

private void bw_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    {
        MessageBox.Show("Completed"); //Does not work

        //Check if restart
        if (bw_restart)
        { 
            bw_restart = false;
            bw.RunWorkerAsync();

        }
        //If it was cancelled
        if (e.Cancelled)
        {
            this.Close();
        }
        //If error show error message
        else if (e.Error != null)
        {
            MessageBox.Show(e.Error.ToString()); // Does not show
        }
        else //No errors or cancelled
        {
            MessageBox.Show(e.ToString()); //Does not shoiw
        }

    }

取消按钮

private void cancel_Click(object sender, EventArgs e)
    {
        bw.CancelAsync(); //Does not work :s
    }

它不会关闭窗口,按下时的 X 不会做任何事情,我让它关闭表单但没有停止后台工作人员,这让我有点生气。链接到我为这个问题得到的代码不起作用:如何在 Form's Closing 事件中停止 BackgroundWorker?

4

3 回答 3

2
   if (e.Cancelled)

这是根本错误的。你永远不能 100% 确定它会被设置。取消 BGW 始终是一种竞争条件,当您调用其 CancelAsync() 方法时,BGW 可能正忙于退出,因此从未看到 CancellationPending 设置为 true,因此从未在 DoWork 事件处理程序中分配 e.Cancel = true。

您所知道的事实是 mClosePending 是可靠的,因为它在 UI 线程上设置为 true。因此,无论 e.Cancelled 状态如何,始终调用 Close() 将其设置为 true。

是的,检查 e.Error 也没有什么坏处。但仍然检查 mClosePending。

于 2013-06-17T19:14:58.233 回答
1

正如我的评论中所述,您的 BackgroundWorker 已因错误而结束,请尝试在已完成的运行工作人员的顶部添加以下内容。解决此错误后,您的问题将更容易回答。

if(e.Error != null)
     MessageBox.Show(e.Error.toString());//Put a breakpoint here also
于 2013-06-17T19:07:08.207 回答
0

CancelAsync实际上并没有中止你的线程或类似的东西。它向工作线程发送一条消息,表明工作应该通过 BackgroundWorker.CancellationPending 取消。在后台运行的 DoWork 委托必须定期检查此属性并自行处理取消。

看这个:

    private BackgroundWorker background;

    private void Form1_Load(object sender, EventArgs e)
    {
        background = new BackgroundWorker();
        background.WorkerSupportsCancellation = true;
        background.DoWork += BackgroundOnDoWork;
        background.RunWorkerCompleted += BackgroundOnRunWorkerCompleted;

        background.RunWorkerAsync();
    }

    private void BackgroundOnRunWorkerCompleted(object sender, RunWorkerCompletedEventArgs runWorkerCompletedEventArgs)
    {
        MessageBox.Show("stop");
    }

    private void BackgroundOnDoWork(object sender, DoWorkEventArgs doWorkEventArgs)
    {
        // your doWork loop should check if someone don't call background.CancelAsync();
        while (!background.CancellationPending) 
        {
            // do something
        }
    }

    private void ButtonClick(object sender, EventArgs e)
    {
        background.CancelAsync();
    }
于 2013-06-17T21:35:26.540 回答