你可以把
入库查询 h = new 入库查询();
for (int x = 0; x < this.MdiChildren.Length; x++)
{
Form tempChild = (Form)this.MdiChildren[x];
tempChild.Close();
}
h.MdiParent = this;
h.WindowState = FormWindowState.Maximized;
h.Show();
这部分,提取出一个方法,子类就可以调了
private void button3_Click(object sender, EventArgs e)
{
(this.MdiParent as 主界面).查询ToolStripMenuItem_Click(null, null);
}
this.Parent.查询ToolStripMenuItem_Click(null, null);
是不是这个意思?在子窗体中调用父窗体的函数。试试看呢。