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: Finally, assuming you are using qmake to generate your makefiles, add this line to your myapp.pro file: 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 .resfile. 这是原文 首先在vc++里鼓捣个icon格式的图标出来,我是在网上下的icon,呵呵 然后把这个图标放在源码根目录下,创建一个txt文件,名字叫做myappico.rc在内容里加入这么一行
最后如果你qmake过了,就在你的.pro文件里加入一行,像这样
然后编译、连接 就搞定了Setting the Application Icon on Windows
IDI_ICON1 ICON DISCARDABLE "myappico.ico"
RC_FILE = myapp.rc
IDI_ICON1 ICON DISCARDABLE "myappico.ico"
RC_FILE = myapp.rc
Qt 改变快捷方法的图标的方法
最新推荐文章于 2024-12-17 16:10:14 发布