111,094
社区成员




public void ThreadRunPro()
{
Form1.fnGetInstance().test();
Thread.Sleep(1000);
}
public void test()
{
try
{ this.Invoke(new Action(() => {
this.Text = "111";
})); }
catch (Exception er){ }
}