如何在qt中为qtreewidgetitem设置上下文菜单
我想知道如何为 qtreewidgetitem 设置上下文菜单,也就是说,如果我右键单击 qtreewidget 中的每个项目,我应该有一些选项,例如编辑、删除..我想知道我们如何实现这个。谢谢提前
I would like to know how can we set context menu for a qtreewidgetitem that is if i right click on each item in my qtreewidget,i should have some options like edit,delete ..i would like to know how can we implement this.thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建多个操作,例如“编辑”、“删除”...
调用 myTreeWidget->addAction( actionEdit )
调用 myTreeWidget->setContextMenuPolicy( Qt::ActionsContextMenu )
将插槽连接到 QAction::triggered 信号,从那里检索项目选择并执行代码。
create several Action's such as "Edit", "Delete",...
call myTreeWidget->addAction( actionEdit )
call myTreeWidget->setContextMenuPolicy( Qt::ActionsContextMenu )
Connect a slot to the QAction::triggered signal, retrieve the item-selection from there and execute your code.