我正在尝试使用Qt 4.8在C ++中编写一个简单的程序,我遇到了这个问题:
我希望QGraphicsRectItem成为另一个的父级。无论如何,当显示父级时,子项将显示在外部,就像使用场景坐标而不是父级的本地坐标一样。
这是我的代码
QGraphicsRectItem* qRect = new QGraphicsRectItem(x,y,width,height);
QGraphicsRectItem* qRect2 = new QGraphicsRectItem(0,0,100, 100, qRect);
qRect2->setParentItem(qRect);
_pcChooseMenuScene->addItem(qRect);
_game.getGameGraphicsView()->setScene(_pcChooseMenuScene);
The output Image
我是否误解了父母/子女的关系,在这种情况下不起作用还是版本问题?
提前感谢您的回复。