Pages

Thursday, March 17, 2011

C# 3: MDI Application



private void form2ToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 newmdichild = new Form2();
newmdichild.MdiParent = this;
newmdichild.Show();
}

Set IsMdiParent = True

No comments:

Post a Comment