如何在Qt中使用QGraphicsView?
我需要在 Qt
如果我单击圆圈,它会弹出一条消息,如下所示“您单击了 2 个圆圈。 ”
我需要在运行时在任何位置添加圆圈。如何在 Qt 中使用 QGraphicsView 实现这一点?或者还有其他更好的方法来实现这一点吗?
I need to create a view like this in Qt
If I click the circle then it'll give a popup message like this "You clicked 2 circle."
I need to add the circle during run time in any location. How to implement this in Qt using QGraphicsView
? Or are there any other better way to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Qt 文档中的以下页面可以帮助您: http://doc.qt.io/qt -5/graphicsview.html
拖放示例将帮助您了解如何操作处理您的
QGraphicItems
希望有帮助
The following page from Qt documentation can help you: http://doc.qt.io/qt-5/graphicsview.html
The Drag and drop example will help you to know how deals with your
QGraphicItems
Hope that helps