当我想从ToolStripMenu打开一个新表单时,我通常会这样做
private void alumnoToolStripMenuItem_Click(object sender, EventArgs e)
{
frmAlumno x = new frmAlumno();
x.ShowDialog();
}
但老师告诉我这是错的,因为这不应该发生..
所以我想我必须使用MdiContainer,但我现在还不确定如何编写代码......请帮忙...
答案 0 :(得分:3)
如果您使用MDI,则应致电Show
,而不是ShowDialog
。您还需要设置MdiParent
。
Form2 newMDIChild = new Form2();
// Set the Parent Form of the Child window.
newMDIChild.MdiParent = this;
// Display the new form.
newMDIChild.Show();
答案 1 :(得分:3)
我将回答您实际问题的解决方案,而不是描述如何使用MdiContainer,因为您实际上并不需要它。 :)
表单的ShowInTaskbar
属性默认为true
。将其设置为false
,表单将不再显示在任务栏中。
private void alumnoToolStripMenuItem_Click(object sender, EventArgs e)
{
frmAlumno x = new frmAlumno();
x.ShowInTaskbar = false;
x.ShowDialog();
}
有关详细信息,请参阅MSDN。
答案 2 :(得分:0)