在MdiParent toolstripmenuItem
中,我正在编写代码以显示所有窗口的cascade or Tile Horizontal
样式。我的代码是:
this.LayoutMdi(MdiLayout.Cascade);
this.LayoutMdi(MdiLayout.TileHorizontal);
此代码仅适用于 mdi 父级。但现在我Split container
在我的父表单中使用 a 。在Panel1
我有显示表单的按钮。在Panel2
我的表单中将显示为:
Forms.paymentPaid paidFm = new SalesandPurchases.Forms.paymentPaid();
paidFm.MdiParent = this;
paidFm.Left = (this.myPanel.Width - paidFm.Width) / 2;
paidFm.Top = (this.myPanel.Height - paidFm.Height) / 2;
myPanel.Controls.Add(paidFm);
paidFm.Show();
现在因为我Split Container my code( this.LayoutMdi(MdiLayout.Cascade))
不能在Panel2
. 请告诉我任何其他方式。