在 Qt 中为 QTableView 创建弹出菜单
我的程序的主 UI 中有一个 QTableView。 我想在用户右键单击表格单元格时显示弹出菜单,并在从菜单中选择选项时采取适当的操作。
我正在使用 Qt Creator 1(Qt 版本 4.5)。 我怎样才能做到这一点?
I have a QTableView
in the main UI of my program. I'd like to show popup menu when user right clicks on the cells of the table and take appropriate action when an option is selected from the menu.
I am using Qt Creator 1 (Qt version 4.5). How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 customContextMenuRequested 信号来获取事件,并使用 QMenu 用于菜单本身。 使用 QTableView::indexAt 找出单元格是什么(如果有)根据给定信号的坐标进行单击,并在单击菜单项时采取适当的操作。
Check out the customContextMenuRequested signal to get the event, and use a QMenu for the menu itself. Use QTableView::indexAt to find out what, if any, cell was clicked based on the coordinates given to the signal and take the appropriate action when a menu item is clicked.