Quote
"To create MDI child forms
-
Create an MDI parent form that has a menu structure containing File and Window top-level menu items and New and Close menu items. For more information about creating MDI parent forms, see How to: Create MDI Parent Forms.
-
In the drop-down list at the top of the Properties window, select the menu item that corresponds to the &Window menu item and set the MdiList property to true.
This will enable the Window menu to maintain a list of open MDI child windows with a check mark next to the active child window. "
SOLUTION (taken from Social Forums)
mccune68
- Posted on 01 December 2005 16:43:34
I think I found the solution to this problem, the instructions given in the MSDN walkthrough for this are incorrect. To define which of your menu items will be the 'Window' command to hold the child forms, set the MdiWindowListItem property of your MenuStrip control to the proper ToolStripMenuItem; don't go banging your head searching for the ToolStripMenuItem.MdiList property as it doesn't appear to exist.