C#中怎样创建MDI子窗体?
在MDI主窗体的【属性】对话框中,将MDI主窗体的IsMdiContainer属性设为true,如下图
将Button控件从工具箱拖到窗体上,如下图
给当前项目添加windows窗体,命名Child,如下图
给Button添加Click事件,代码如下
private void button1_Click(object sender, EventArgs e)
{
Child c = new Child();
c.MdiParent = this;
c.Show();
}