我知道使用以下两种方法以另一种形式显示形式
方法1
public Form1()
{
InitializeComponent();
Form2 embeddedForm = new Form2();
embeddedForm.TopLevel = false;
Controls.Add(embeddedForm);
embeddedForm.Show();
}
方法二
Form1 fChild = new Form1();
fChild.MdiParent = this;
fChild.Show();
我需要学习如何在父表单的面板中显示此子表单
或者如果有人可以告诉我如何设置子窗体的 x,y 坐标