/** * Начало меню */ 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; }