Qt应用程序的图标

来源:互联网 发布:mac如何连远程桌面 编辑:程序博客网 时间:2024/05/20 08:44

程序设计完成了,如何修改exe文件的图标呢,总不能用默认的白板吧,搜来搜去,终于在Qt助手中搜到答案了,粘贴到这里备忘。

Setting the Application Icon on Windows

First, create an ICO format bitmap file that contains the icon image. This can be done with e.g. Microsoft Visual C++: SelectFile|New, then select the Filetab 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 namemyappico.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 yourmyapp.pro file:

 RC_FILE = myapp.rc

Regenerate your makefile and your application. The .exefile will now be represented with your icon in Explorer.

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

 

在vs2010 中编译先导出.pro文件,然后关闭工程,开打vs2010 导入.pro文件,编译出图标了,哈哈!真是不容易啊!