解决方案 »

  1.   

    必须用ui线程访问Form
    http://msdn.microsoft.com/zh-cn/library/hz8wbs6k%28v=vs.110%29.aspx
    // Instead, you must call the procedure from the form's thread.
            // One simple way to accomplish this is to call the Invoke
            // method of the form, which calls the delegate you supply
            // from the form's thread. 
            DisplayInfoDelegate del = 
             new DisplayInfoDelegate(DisplayResults);
            this.Invoke(del, rowText);
      
    *****************************************************************************
    签名档: http://feiyun0112.cnblogs.com/