public static MainForm frm = null;
public void setLabel(string str)
{
labelName.Text = str;
//Application.DoEvents();
//labelName.refresh();
}
private void btn_Run_Click(object sender, EventArgs e)
{
InitializeComponent();
frm = this;
}
调用:在任意同一命名空间内的Code文件使用:
MainForm.frm.setLabel("Lable显示的内容");
注意事项:
1、InitializeComponent();一定要有,如果前面已经调用了就把这句去掉,否则可能出现无效果操作。
2、frm = this;一定要写到触发里面,否则在调用是会出现:“未将对象引用设置到对象的实例”的错误。
3、如果不显示任何效果可以进行强制刷新试试:Application.DoEvents(); 或labelName.refresh();将程式注释部分打开一个即可。