DropDownOpening Event and MatchOnly merge action
I've got an MDI application where the parent form has a ToolStripMenuItem labled File that contains subitems. There is also a child form that has a ToolStripMenuItem labled File that contains subitems aswell. The merge property of the child menu item is set to MatchOnly and the index is set to the same index as the parent item.
So, I want to dynamicly modify the sub items of the File menu base on the DropDownOpening event. However, I've discovered that the method does not fire if you try to drop down the target File menu item on the target MenuStrip, but rather is will only fire for the source File menu item that is still on the source MenuStrip. This only seems to be an issue with menu items that have a the merge type of MatchOnly.
I guess I have two questions: 1) Shouldn't the DropDownOpening event follow the merge? 2) What is the work around for this?

