Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 2.97 KB

how-to-create-mdi-parent-forms.md

File metadata and controls

40 lines (28 loc) · 2.97 KB
title description ms.date helpviewer_keywords ms.assetid
How to: Create MDI Parent Forms
Learn how to create an MDI parent form programmatically and by using the Windows Forms Designer.
03/30/2017
parent forms
MDI [Windows Forms], creating forms
12c71221-2377-4bb6-b10b-7b4b300fd462

How to: Create MDI Parent Forms

Important

This topic uses the xref:System.Windows.Forms.MainMenu control, which has been replaced by the xref:System.Windows.Forms.MenuStrip control. The xref:System.Windows.Forms.MainMenu control is retained for both backward compatibility and future use, if you choose. For information about creating a MDI parent Form by using a xref:System.Windows.Forms.MenuStrip, see How to: Create an MDI Window List with MenuStrip.

The foundation of a Multiple-Document Interface (MDI) application is the MDI parent form. This is the form that contains the MDI child windows, which are the sub-windows wherein the user interacts with the MDI application. Creating an MDI parent form is easy, both in the Windows Forms Designer and programmatically.

Create an MDI parent form at design time

  1. Create a Windows Application project in Visual Studio.

  2. In the Properties window, set the xref:System.Windows.Forms.Form.IsMdiContainer%2A property to true.

    This designates the form as an MDI container for child windows.

    [!NOTE] While setting properties in the Properties window, you can also set the WindowState property to Maximized, if you like, as it is easiest to manipulate MDI child windows when the parent form is maximized. Additionally, be aware that the edge of the MDI parent form will pick up the system color (set in the Windows System Control Panel), rather than the back color you set using the xref:System.Windows.Forms.Control.BackColor%2A?displayProperty=nameWithType property.

  3. From the Toolbox, drag a MenuStrip control to the form. Create a top-level menu item with the Text property set to &File with submenu items called &New and &Close. Also create a top-level menu item called &Window.

    The first menu will create and hide menu items at run time, and the second menu will keep track of the open MDI child windows. At this point, you have created an MDI parent window.

  4. Press F5 to run the application. For information about creating MDI child windows that operate within the MDI parent form, see How to: Create MDI Child Forms.

See also