首页上一页 1 下一页尾页 2 条记录 1/1页
ToolStripMenuItem_Click是什么意思
发表在C#答疑区
2017-07-07
是否精华
是
否
版块置顶:
是
否
private void 加载子窗体ToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 frm2 = new Form2();
frm2.MdiParent = this;
frm2.Show();
Form3 frm3 = new Form3();
frm3.MdiParent = this;
frm3.Show();
Form4 frm4 = new Form4();
frm4.MdiParent = this;
frm4.Show();
}