问题
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