如何从 Qt4 的 QMenu 中删除菜单项?

发布于 2024-12-02 03:09:12 字数 140 浏览 0 评论 0原文

对于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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘逸的'云 2024-12-09 03:09:12

获取要删除的子菜单的 QAction:

QAction *menuIdontLike = subMenu->menuAction();
mainMenu->removeAction(menuIdontLike);

Get the QAction for the submenu you want to delete:

QAction *menuIdontLike = subMenu->menuAction();
mainMenu->removeAction(menuIdontLike);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文