设置Qt应用程序图标

在Qt助手(assistant.exe)搜索关键字"Setting the Application Icon"就可以看到在各种平台设置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++: 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.
在VC下RC_FILE = myapp.rc这步操作可以省略。再将这个rc文件加入到VC++的项目中,然后设置它的<配置属性|资源|常规|预处理器定义>为如下:
“_WINDOWS, UNICODE, WIN32, QT_LARGEFILE_SUPPORT, QT_DLL, QT_WEBKIT_LIB, QT_XML_LIB,
QT_GUI_LIB, QT_NETWORK_LIB, QT_CORE_LIB, QT_THREAD_SUPPORT, _DEBUG”( 这些参数的设置视情况而定)
然后编译这个*.rc文件,再编译vc项目。

转载于:https://www.cnblogs.com/codespy/archive/2008/09/05/1285073.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值