在 Qt 中为 QTableView 创建弹出菜单

发布于 2024-07-16 14:49:41 字数 132 浏览 5 评论 0原文

我的程序的主 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 技术交流群。

扫码二维码加入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.

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