如何使用 QGLWidget 显示弹出菜单?
当您在 QGLWidget 中右键单击时如何显示上下文菜单?
how to show a context menu when you right click within a QGLWidget?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当您在 QGLWidget 中右键单击时如何显示上下文菜单?
how to show a context menu when you right click within a QGLWidget?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
重写 QGLWidget 类和 mouseReleaseEvent( QMouseEvent * event ) 函数
然后在 mouseReleaseEvent 函数中,使用映射的全局位置调用 QMenu exec() 。
Override the QGLWidget class and the mouseReleaseEvent( QMouseEvent * event ) function
Then in the mouseReleaseEvent function, call QMenu exec() with the mapped global position.