private void oOPSDesignPage1ToolStripMenuItem_Click(object sender, EventArgs e) { if (ActiveMdiChild != null) { ActiveMdiChild.Close(); } // Create a new form to represent the child form. ObjectOrientedDesign child = new ObjectOrientedDesign(); // Increment the private child count. childFormNumber++; // Set the text of the child form using the count of child forms. String formText = "Object Oriented Design" + "Page 1"; child.Text = formText; // Make the new form a child form. child.MdiParent = this; // Display the child form. child.Show(); }
private void linkLabel6_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Form f = new ObjectOrientedDesign(); f.Show(); }