MenuItem.MdiList Property
Assembly: System.Windows.Forms (in system.windows.forms.dll)
When a menu item is selected to display an MDI child window list, the list is displayed as a submenu of the menu item. Only forms that are defined as MDI child forms are displayed in the window list. Only nine child windows can be displayed at a time. If there are more than nine child windows displayed, a "More Windows..." menu item is displayed at the end of the window list. Clicking this menu item displays a dialog box with a complete list of the child windows that are currently active.
The following code example creates a MenuItem that is used to display the list of currently open MDI child forms in an MDI form.
public void SetMDIList() { // Create the MenuItem to be used to display an MDI list. MenuItem menuItem1 = new MenuItem(); // Set this menu item to be used as an MDI list. menuItem1.MdiList = true; }
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.