如何从 Qt4 的 QMenu 中删除菜单项?
对于QMenu,我们可以插入两种项目,一种是QAction,可以通过removeAction方法删除它,另一种是另一个QMenu,我找不到从菜单中删除菜单项的方法。
怎么做呢?我现在能想到的唯一方法是使用clear()方法删除所有内容并重新生成项目。
For a QMenu, we can insert two kind of items, one is QAction, which can be removed by removeAction method, the other is another QMenu, I cannot find a way to remove the menu item from a menu.
How to do it? The only way I can think of now is to use clear() method to remove everything and re-generate the items.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取要删除的子菜单的 QAction:
Get the QAction for the submenu you want to delete: