How to: Create MDI Parent Forms

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.

To create an MDI parent form at design time

  1. Create a Windows Application project. For more information, see How to: Create a Windows Application Project.

  2. In the Properties window, set the IsMDIContainer 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 Control.BackColor property.

  3. From the Toolbox, drag a MainMenu component 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

Tasks

How to: Create MDI Child Forms
How to: Determine the Active MDI Child
How to: Send Data to the Active MDI Child
How to: Arrange MDI Child Forms

Other Resources

Multiple-Document Interface (MDI) Applications