• 8440阅读
  • 3回复

QT -window- 下给应用程序加图标 出错 [复制链接]

上一主题 下一主题
离线hczx2005906
 
只看楼主 正序阅读 楼主  发表于: 2010-05-12
看了给window下添加图标的帖子
First, create an ICO format bitmap file that contains the icon image. This can be done with e.g. Microsoft Visual C++: Select File|New, then select the File tab in the dialog that appears, and choose Icon. (Note that you do not need to load your application into Visual C++; here we are only using the icon editor.)

Store the ICO file in your application's source code directory, for example, with the name myappico.ico. Then, create a text file called, say, myapp.rc in which you put a single line of text:

IDI_ICON1               ICON    DISCARDABLE     "myappico.ico"
Finally, assuming you are using qmake to generate your makefiles, add this line to your myapp.pro file:

RC_FILE = myapp.rc
Regenerate your makefile and your application. The .exe file will now be represented with your icon in Explorer.

If you do not use qmake, the necessary steps are: first, run the rc program on the .rc file, then link your application with the resulting .res file.


其实就是把你的图标转成 .ico 的文件,比如名为:myappico.ico。然后加个到 .rc文件中。

.rc文件使用记事本建立就行,其中添加一行

IDI_ICON1               ICON    DISCARDABLE     "myappico.ico"
保存

如果你使用 qmake 来生成你的makefile的话。就在.pro 文件中加入如下一行:

RC_FILE = myapp.rc

再在main函数的 Application  中添加
QApplication a(argc, argv);

   a.setWindowIcon(QIcon("win.ico"));
一切都是按照上面说的做的 怎么会出错?
怎么解决呢!

望高手指点下
离线wd007

只看该作者 3楼 发表于: 2010-07-03
同意楼上的说法。
欢迎访问我的博客,一起学习提高
http://blog.csdn.net/qter_wd007
离线dbzhang800

只看该作者 2楼 发表于: 2010-07-03
问题很简单,但思考一下,暴露的问题却很多:

1. 错误原因其实很简单, 没包含 QIcon 这个头文件 (不用说怎么解决了吧 *.*)
2. 在windows下,当给可执行程序设置图标后,这条语句已经没有什么用了(可有可无)
3. 如果要用这条语句,最好将图片或图标文件放到 qrc 资源文件中
4. 如果要用,这个地方最好用 png 格式,而不要用 ico 格式(不然为了这个可有可无的东西还要时刻想着要发布 ico 的图片插件)
离线yangfanxing
只看该作者 1楼 发表于: 2010-07-03
a.setWindowIcon(QIcon("win.ico"));
ico名字什么的有错啊???

你的步骤都是对的!
PHPWind好恶心。。。不想看这种界面。。。
快速回复
限100 字节
 
上一个 下一个