QGraphicsView无法显示图像

时间:2012-09-22 08:16:33

标签: c++ qt

我在UI中有一个graphicsView,我使用此代码从资源中设置图像但不起作用:

- 在头文件中:

QGraphicsScene *scene;

- 在cpp文件中:

scene = new QGraphicsScene();
scene->addPixmap(QPixmap(":/images/alert.png"));
ui->graphicsView->setScene(scene);

代码中有什么问题?

0 个答案:

没有答案