fm1父
fm2子
在fm2子中创建一个方法
public void readdata(string id)
{
labelControl1.Text = id;
}
fm2?nn =fm2(strKey);
? nn.readxmGrid(strKey);
nn.show();
===========方法2?
在fm1中创建
? public delegate void reflashdata(string id);
同样在fm2中
public void readdata(string id)
{
labelControl1.Text = id;
}
fm2?nn =fm2(strKey);
nn.show();
? reflashdata tt = new reflashdata(nn.readxmGrid);
? ?tt(strKey);