Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个没有任何子菜单的菜单。 创建菜单的常用方法是:
BEGIN POPUP "File" BEGIN MENUITEM "Copy", IDM_EDIT_COPY MENUITEM "Paste", IDM_EDIT_PASTE END ... END
现在我只想要"File"没有子菜单"Copy"和"Paste"。我如何实现这一目标?
你试过了吗
BEGIN MENUITEM "File", ID_FILE ... END
?