MDI Menus Question
-
Hi When a MDIChild menu is merged with the MDIParent menu via combination of MatchOnly and Insert MergeAction , actually the ToolStripMenuItems are removed from the MDIChild menu and are inserted in the MDIParent menu.So after merge is complete i can't enumerate the ToolStripMenuItems of the MDIChild menu because they don't exist there anymore.Does this accomplished via shallow copy or deep copy ? If i keep an array of these elements before Merge takes place will this collection substitutes the enumeration ? If not is there any way to deal with these items as a collection (stricty as a collection because i can access them individually ) after merging (inside the MDIChild of course) ? Thanx in advance. P.S Working on VS2005 beta 2
-
Hi When a MDIChild menu is merged with the MDIParent menu via combination of MatchOnly and Insert MergeAction , actually the ToolStripMenuItems are removed from the MDIChild menu and are inserted in the MDIParent menu.So after merge is complete i can't enumerate the ToolStripMenuItems of the MDIChild menu because they don't exist there anymore.Does this accomplished via shallow copy or deep copy ? If i keep an array of these elements before Merge takes place will this collection substitutes the enumeration ? If not is there any way to deal with these items as a collection (stricty as a collection because i can access them individually ) after merging (inside the MDIChild of course) ? Thanx in advance. P.S Working on VS2005 beta 2
A List works fine.:)