Esempio n. 1
0
        private void linkedListPage1ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (ActiveMdiChild != null)
            {
                ActiveMdiChild.Close();
            }

            // Create a new form to represent the child form.
            LinkedListPage1 child = new LinkedListPage1();

            // Increment the private child count.
            childFormNumber++;
            // Set the text of the child form using the count of child forms.
            String formText = "Linked List" + "Page 1";

            child.Text = formText;

            // Make the new form a child form.
            child.MdiParent = this;
            // Display the child form.
            child.Show();
        }
Esempio n. 2
0
        private void linkLabel2_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
        {
            Form f = new LinkedListPage1();

            f.Show();
        }