当我使用 QtCreator 2.7.0 运行程序时,会出现一个空白的应用程序窗口。当我在发布文件夹中运行可执行文件时,它可以工作。可能是什么问题?
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel topLevelLabel;
QPixmap pixmap("gem.jpg");
topLevelLabel.setPixmap(pixmap);
topLevelLabel.setMask(pixmap.mask());
topLevelLabel.show();
return app.exec();
}