c#的mdi窗口中如何完成子窗口间的切换?

 

form1,form2,form3是form0的子窗体。
主窗体form0的工具栏toolbar1中有三个按钮Toolbutton1,Toolbutton2,Toolbutton3;
点击Toolbutton1打开form1子窗体,点击Toolbutton2打开form2子窗体,点击Toolbutton3打开form3子窗体;
要加入什么代码,可以实现这样的功能:
当一个子窗体已经打开,点击按钮要打开另一个子窗体时,会自动关掉已经打开的子窗体。

 

在ToolBar的ButtonClick事件里写
if (e.Button == this.toolBar1.Buttons[0])
{
Form1 f1 = new Form1();
f1.MdiParent = this;

// 判断目前有没有MDI子窗体 如果没有这样关闭那会报异常
if(this.MdiChildren.Length > 1)
this.MdiChildren[0].Close();
f1.Show();
}
else if (e.Button == this.toolBar1.Buttons[1])
{
Form2 f2 = new Form2();
f2.MdiParent = this;
if (this.MdiChildren.Length > 1)
this.MdiChildren[0].Close();
f2.Show();
}
else
{
Form3 f3 = new Form3();
f3.MdiParent = this;
if (this.MdiChildren.Length > 1)
this.MdiChildren[0].Close();
f3.Show();
}

你可能感兴趣的:(c#的mdi窗口中如何完成子窗口间的切换?)