标签: c++ qt
我在UI中有一个graphicsView,我使用此代码从资源中设置图像但不起作用:
- 在头文件中:
QGraphicsScene *scene;
- 在cpp文件中:
scene = new QGraphicsScene(); scene->addPixmap(QPixmap(":/images/alert.png")); ui->graphicsView->setScene(scene);
代码中有什么问题?