public ToolStripMenuItem MdiWindowListItem { get; set; }
To create an MDIWindowList set the MenuStrip's MDIWindowListItem property to the ToolStripMenuItem which you want as the parent of the list. This is typically the "Window" ToolStripMenuItem. If that's set, we'll add an entry for each mdi child in that list. If you want to further customize what we have there, you can check for the bool IsMdiWindowListEntry on ToolStripMenuItem.
How do you create an MDIList using the menuStrip?
Mathijs van Altvorst
Rose Say
pbjorge12
public ToolStripMenuItem MdiWindowListItem { get; set; }
To create an MDIWindowList set the MenuStrip's MDIWindowListItem property to the ToolStripMenuItem which you want as the parent of the list. This is typically the "Window" ToolStripMenuItem. If that's set, we'll add an entry for each mdi child in that list. If you want to further customize what we have there, you can check for the bool IsMdiWindowListEntry on ToolStripMenuItem.
OliMagoo
If anyone else is looking for the answer, the menustrip has a MDIWindowList property, which takes a menu strip item. That sets the MDIList............
Brad Raulston