如何在 QGraphicsView::Scale 之后调整 QGraphicsView 的大小
调用scale()后是否有不丑陋的方法来调整QGraphicsView的大小。
我的 QGraphicsView 嵌入在 QScrollArea 中。当我缩放时,我希望视图变大。
谢谢
Is there non-hideous way to resize a QGraphicsView after a call of scale().
My QGraphicsView is embedded in a QScrollArea. When I zoom i want the View the get bigger.
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QGraphicsView
本身继承自QAbstractScrollArea
。将它嵌入到另一个 QScrollArea 中会非常奇怪,并且可能是问题的根源。默认情况下,当您将QGraphicsScene
缩放到大于其显示的QGraphicsView
时,它将显示必要的滚动条。QGraphicsView
itself inherits fromQAbstractScrollArea
. Embedding it within anotherQScrollArea
would be very strange, and is likely the source of your problems. By default, when you scale aQGraphicsScene
larger than theQGraphicsView
in which it is displayed, it will show the necessary scroll bars.