Form.IsDisposed, Application.ThreadException 统统无用,还是要 try 大法 否则在线程中访问已经关闭的窗口还是有可能会说无法访问已经释放和对象.
不过 Application.ThreadException 这样的是不是要在每个线程中都设置?
if ((parentForm != null) && (OnReviceResponse_windows_action != null) && (parentForm.IsDisposed == false))
//if ((parentForm != null) && (OnReviceResponse_windows_action != null) && (parentForm.IsAccessible != false))
{
try//避免无法访问已释放对象错误
{
parentForm.Invoke(OnReviceResponse_windows_action, response);
}
catch (System.Exception e)
{
//MessageBox.Show("test catch");
}
}