--- title: "How to: Remove a ToolStripMenuItem from an MDI Drop-Down Menu" ms.date: "03/30/2017" dev_langs: - "csharp" - "vb" helpviewer_keywords: - "menu items [Windows Forms], removing from MDI drop-down menus" - "MenuStrip control [Windows Forms], merging" - "MenuStrip control [Windows Forms], removing" - "MDI [Windows Forms], merging menu items" ms.assetid: bdafe60d-82ee-45bc-97fe-eeefca6e54c1 --- # How to: Remove a ToolStripMenuItem from an MDI Drop-Down Menu (Windows Forms) In some applications, the kind of a multiple-document interface (MDI) child window can be different from the MDI parent window. For example, the MDI parent might be a spreadsheet, and the MDI child might be a chart. In that case, you want to update the contents of the MDI parent's menu with the contents of the MDI child's menu as MDI child windows of different kinds are activated. The following procedure uses the , , , and properties to remove a menu item from the drop-down part of the MDI parent menu. Closing the MDI child window restores the removed menu items to the MDI parent menu. ### To remove a MenuStrip from an MDI drop-down menu 1. Create a form and set its property to `true`. 2. Add a to `Form1` and set the property of the to `true`. 3. Add a top-level menu item to the `Form1` and set its property to `&File`. 4. Add three submenu items to the `&File` menu item and set their properties to `&Open`, `&Import from`, and `E&xit`. 5. Add two submenu items to the `&Import from` submenu item and set their properties to `&Word` and `&Excel`. 6. Add a form to the project, add a to the form, and set the property of the `Form2` to `true`. 7. Add a top-level menu item to the `Form2` and set its property to `&File`. 8. Add an `&Import from` submenu item to the `&File` menu of `Form2`, and add an `&Word` submenu item to the `&File` menu. 9. Set the and properties of the `Form2` menu items as shown in the following table. |Form2 menu item|MergeAction value|MergeIndex value| |---------------------|-----------------------|----------------------| |File|MatchOnly|-1| |Import from|MatchOnly|-1| |Word|Remove|-1| 10. In `Form1`, create an event handler for the event of the `&Open`. 11. Within the event handler, insert code similar to the following code example to create and display new instances of `Form2` as MDI children of `Form1`: ```vb Private Sub openToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles openToolStripMenuItem.Click Dim NewMDIChild As New Form2() 'Set the parent form of the child window. NewMDIChild.MdiParent = Me 'Display the new form. NewMDIChild.Show() End Sub ``` ```csharp private void openToolStripMenuItem_Click(object sender, EventArgs e) { Form2 newMDIChild = new Form2(); // Set the parent form of the child window. newMDIChild.MdiParent = this; // Display the new form. newMDIChild.Show(); } ``` 12. Place code similar to the following code example in the `&Open` to register the event handler. ```vb Private Sub openToolStripMenuItem_Click(sender As Object, e As _ EventArgs) Handles openToolStripMenuItem.Click ``` ```csharp this.openToolStripMenuItem.Click += new _ System.EventHandler(this.openToolStripMenuItem_Click); ``` ## Compiling the Code This example requires: - Two controls named `Form1` and `Form2`. - A control on `Form1` named `menuStrip1`, and a control on `Form2` named `menuStrip2`. - References to the and assemblies. ## See also - [How to: Create MDI Parent Forms](../advanced/how-to-create-mdi-parent-forms.md) - [How to: Create MDI Child Forms](../advanced/how-to-create-mdi-child-forms.md) - [MenuStrip Control Overview](menustrip-control-overview-windows-forms.md)