如何在QGraphicsScene中启用拖动功能?
我试图将两张图片放入 QGraphicsScene
中。一个是固定的,另一个是可移动的。但我只成功地将这些图片放入 QGraphicsScene
中,我无法移动它们。我怎样才能实现这个目标?
I'm trying to put two pictures in the QGraphicsScene
. One is fixed and the other one is movable. But I succeed only in putting those pictures in the QGraphicsScene
, I can't move them. How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须确保该物品是可移动的。看看QGraphicsItem::setFlag。
你必须做这样的事情:
You have to make sure the item is movable. Have a look at QGraphicsItem::setFlag.
You'll have to do something like this :