如何将一个窗体放到另外一个窗体的控件(比如Panel)上 问题点数:20、回复次数:1Top
Form2 test=new Form2(); test.TopLevel=false; panel1.Controls.Add(test); test.Show();Top