不知道你整体的大框架是什么?
如果可以的话
可以用试试如下代码
QLabel* widget = new QLabel;
widget->resize(w,h);
QGraphicsProxyWidget *proxy = m_pScene->addWidget(widget,Qt::BypassGraphicsProxyWidget | Qt::Window);
proxy->setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
proxy->setPos(x,y);
在QGraphicsScene里内嵌一个控件