子窗体事件调用父窗体事件写什么语句呢?(C# winfrom)

2024年12月02日 17:41
有3个网友回答
网友(1):

你可以把
入库查询 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();

这部分,提取出一个方法,子类就可以调了

网友(2):

private void button3_Click(object sender, EventArgs e)
{
(this.MdiParent as 主界面).查询ToolStripMenuItem_Click(null, null);
}

网友(3):

this.Parent.查询ToolStripMenuItem_Click(null, null);
是不是这个意思?在子窗体中调用父窗体的函数。试试看呢。