我在MDI父窗體中使用SplitContainter
。Mdiparent和SplitContainer
我的問題是我加載了一個表格panel1
,名爲表格。在帶有按鈕的第一個表格中,我在面板2中加載SecondForm
。
我使用這個代碼:
Form In_but = new SecondForm();
In_but.MdiParent = this.ParentForm;
In_but.TopLevel = false;
this.splitContainer1.Panel2.Controls.Add(In_but);
In_but.Show();
但它不工作。錯誤是:does not contain definition splitContainer1
。
你能在 '不工作' 詳細點嗎?你是否遇到錯誤,是無所事事,還是做一些意想不到的事情? – Flynn1179
錯誤是不包含defination splitContainer1 – user1158914