QGraphicsScene中调用了QGraphicsView的fitInView(itemsBoundingRect(), Qt::KeepAspectRatio);之后,QGraphicsScene和QGraphicsView都无法显示,问题原因是什么,如何解决
时间: 2023-08-26 17:09:24 浏览: 129
调用`fitInView`会自动调整视图的缩放和平移,以便将场景项适合视图。但是,如果场景项的边界矩形不正确或为空,则可能会导致视图无法显示场景。
要解决此问题,可以尝试以下几个步骤:
1.检查场景项是否正确添加到场景中,并且它们的位置和大小是否正确。
2.确保场景项的边界矩形正确计算。可以使用`QGraphicsItem::boundingRect()`方法计算边界矩形。
3.确保视图大小不为零,并且场景项的边界矩形不为空。
4.如果您仍然无法解决问题,请考虑在调用`fitInView`之前设置视图的初始大小和场景的初始大小。
例如,您可以在构造函数中设置视图和场景的初始大小:
```
MyView::MyView(QWidget* parent)
: QGraphicsView(parent)
{
// Set the initial size of the view
setFixedSize(800, 600);
// Create and set the scene
QGraphicsScene* scene = new QGraphicsScene(this);
setScene(scene);
// Set the initial size of the scene
scene->setSceneRect(0, 0, 800, 600);
// Add some items to the scene
scene->addRect(0, 0, 100, 100, QPen(), QBrush(Qt::red));
scene->addRect(200, 200, 100, 100, QPen(), QBrush(Qt::blue));
// Call fitInView to fit the items in the view
fitInView(scene->itemsBoundingRect(), Qt::KeepAspectRatio);
}
```
阅读全文