日期:2014-05-17 浏览次数:20961 次
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.ShowInTaskbar = false;
private void frmMain_Load(object sender, EventArgs e)
{
frmChild frm = new frmChild();
frm.MdiParent = this;
frm.WindowState = FormWindowState.Normal;
frm.FormBorderStyle = FormBorderStyle.None;
frm.Text = "";
frm.Show();
frmMain_SizeChanged(sender, e);
}
private void frmMain_SizeChanged(object sender, EventArgs e)
{
foreach (Form frm in this.MdiChildren)
{
frm.Location = new Point(0, 0);
frm.Size = new Size(this.ClientSize.Width-5, this.ClientSize.Height-5);
}
}