Getting Cross-thread operation not valid in MDIParent [duplicate]

房东的猫 提交于 2019-12-22 11:28:52

问题


Possible Duplicate:
Cross-thread operation not valid

I am trying to close the base of a form from another thread. I am getting the following error.

System.InvalidOperationException: Cross-thread operation not valid: Control 'MDIParent' accessed from a thread other than the thread it was created on.

for the below line:

MDIParent.MDIParentRef.BaseClose();

回答1:


You need to perform the operation on the UI Thread:

if (InvokeRequired) 
    Invoke(new Action(MDIParent.MDIParentRef.BaseClose));
else
    MDIParent.MDIParentRef.BaseClose();


来源:https://stackoverflow.com/questions/1397370/getting-cross-thread-operation-not-valid-in-mdiparent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!