Form2 form = new Form2(); //实例化要添加的窗体 form.Show();//显示 form.TopLevel = false; //要将这个顶级窗口设置false panel1.Controls.Add(form);//添加到Pannel中 pannel在主窗体中