右键单击 QPushButton 上的 contextMenu
对于我的应用程序,我在 Qt Designer 中创建了一个 GUI 并将其转换为 python(2.6) 代码。
在某些 QPushButton
(由设计器创建)上,我想添加右键单击上下文菜单。菜单选项取决于应用程序状态。
如何实现这样的上下文菜单?
For my app I have created a GUI in Qt Designer and converted it into python(2.6) code.
On some of the QPushButton
(created with the designer) I want to add a right click context menu. The menu options depend on the application status.
How to implement such a context menu ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查下面的示例是否适合您。关键是为您的小部件设置上下文菜单策略 CustomContextMenu 并连接到小部件的 customContextMenuRequested 信号:
Check if an example below would work for you. The key thing is to set context menu policy for your widget to CustomContextMenu and connect to the widget's customContextMenuRequested signal: