6

所以我有一个简单的类来更新我的标签,它可以被不同的线程访问并报告我的应用程序的进度。它工作正常,但是在关闭此应用程序时,此代码总是会引发有关尝试访问已处置的内容的错误。

private delegate void SetLabelTextDelegate(string str1, string str2);
public void SetLabelText(string str1, string str2)
{
    if (this.label1.InvokeRequired || this.label2.InvokeRequired)
    {
        this.Invoke(new SetLabelTextDelegate(SetLabelText), new object[] { str1, str2});
        return;
    }
    this.label1.Text = (str1 == string.Empty) ? this.label1.Text : str1;
    this.label2.Text = (str2 == string.Empty) ? this.label2.Text : str2;
}

这不是解决这个问题的正确方法吗?是否需要添加一些内容以确保它在应用程序关闭时不会尝试在 UI 上执行更新?

4

1 回答 1

1

您收到的 ObjectDisposedException 很可能是由于在调用(在队列中)尚未完成时让表单关闭。您要么需要允许 Invokes 在允许表单关闭之前完成,要么必须处理 ObjectDisposedException。

看:

于 2012-11-15T21:55:39.583 回答