答案 0 :(得分:7)
假设您的MenuStrip名称为fileMenu
,请将其打开:
fileMenu.ShowDropDown();
要显示SubMenuItem,请打开ParentMenuItem,然后打开SubMenuStrip。参考截图,我将SubMenuItem命名为“newMenuStrip”。
fileMenu.ShowDropDown();
newMenuStrip.ShowDropDown();
尝试此操作时,您将在MenuStrips中看不到任何选择。所以,这是你的最终代码:
fileMenu.ShowDropDown();
newMenuStrip.ShowDropDown();
newMenuStrip.DropDownItems[0].Selected();