我在spreadsheet.qrc中添加了如下图片资源

在pro文件中也添加了RESOURCES = spreadsheet.qrc

但是生成的程序还是没加载出来图片,菜单栏下面本来应该有工具栏,按钮可以按,但是就是没图标

在qrc_spreadsheet.cpp中也有关于图片资源的语句

我的操作到底哪错了?????
------解决思路----------------------
你没有在代码中设置显示图片吧.
QPalette plt;
plt.setBrush(QPalette::Window, QBrush(QPixmap(":/Sperdsheet/images/copy.png")));
this->setPalette(plt);
------解决思路----------------------
图片路径把那个前缀加上试试:
“:/Spreadsheet/images/new.png”