我在尝试为我的 QT 应用程序设置图标时遇到了一些麻烦。
该图标名为“room.ico”,与源文件位于同一目录中。
这是代码:
#include <QApplication>
#include <QWidget>
int main( int argc, char *argv[ ] )
{
QApplication app( argc, argv) ;
QWidget fenetre;
fenetre.setWindowIcon(QIcon("room.ico")); // Nothing happens
fenetre.setWindowTitle("Heloo");
fenetre.show();
return app.exec() ;
}
我试图添加win32:RC_ICONS += room.ico
,.pro file
但没有奏效。我也试过了"./room.ico"
,还是没有图标。
我试过用这个:
QPixmap pixmap = QPixmap ("room.ico");
fenetre.setWindowIcon(QIcon(pixmap));
你猜怎么着 !!!它没有用......我只是QT的新手:p
任何建议将不胜感激,谢谢