1

我知道使用以下两种方法以另一种形式显示形式

方法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 坐标

4

1 回答 1

1

您可以随时更改表单的父级,例如:

fChild.TopLevel = false;
fChild.Parent = fParent.panel1;
于 2009-08-29T13:10:42.120 回答