private void arrayPage2ToolStripMenuItem_Click(object sender, EventArgs e) { if (ActiveMdiChild != null) { ActiveMdiChild.Close(); } // Create a new form to represent the child form. Page2 child = new Page2(); // Increment the private child count. childFormNumber++; // Set the text of the child form using the count of child forms. String formText = "Array and String " + "Page 2"; child.Text = formText; // Make the new form a child form. child.MdiParent = this; // Display the child form. child.Show(); }
private void button15_Click(object sender, EventArgs e) { Page2 frm = new Page2(); frm.Show(); }