方法一:
使用try来捕获异常屏蔽这个错误提示吧。
try
{
this.Invoke(new MethodInvoke(myMethod));
}
catch
{
}
方法二:
如果你的线程方法放在了类中,那么调用委托必须要这么做
- C# code
- FORM1.Invoke(new MethodInvoke(myMethod));
但是这样做就会出现异常,所以必须传递一个参数,在调用线程或者在这之前,将FORM1传递进来!
一个例子:
- C# code
- //FORM: private void Form1_Load(object sender, EventArgs e) { Class1 c1 = new Class1(); Thread xc = new Thread(c1.xiancheng); xc.Start(this);//启动线程的时候,要在这里将FORM传递过去 }
- C# code
- //CLASS1: namespace WindowsApplication1 { delegate void MethodInvoke(Form1 frm1);//申明委托,带一个FORM1参数 class Class1 { public void xiancheng(object frm) { Form1 frm1 = (Form1)frm;//在这里要将OBJECT转为FORM1 frm1.Invoke(new MethodInvoke(weituo),frm1 );//调用委托,并且传递FRM1 } public void weituo(Form1 frm1) { frm1.Text = "123";//修改FORM1窗体的标题 } } }