Exemplo n.º 1
0
 /**
  * Начало меню
  */
 private void createTextToolStripMenuItem_Click(object sender, EventArgs e)
 {
     MDITextForm newMDIChild = new MDITextForm();
     // Set the Parent Form of the Child window.
     newMDIChild.MdiParent = this;
     // Display the new form.
     newMDIChild.Show();
     toolStrip1.Visible = true;
 }
Exemplo n.º 2
0
        /**
         * Начало меню
         */
        private void createTextToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MDITextForm newMDIChild = new MDITextForm();

            // Set the Parent Form of the Child window.
            newMDIChild.MdiParent = this;
            // Display the new form.
            newMDIChild.Show();
            toolStrip1.Visible = true;
        }