zoukankan      html  css  js  c++  java
  • windows下给QT可执行文件(exe)一个图标

    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.

    首先准备个ICO图标。例如:myappico.ico
    用写字版新建个文件
    里面就写一行:
    IDI_ICON1           ICON   DISCARDABLE   "myappico.ico" 保存改名为 myapp.rc并把它和你的图标myappico.ico一起复制到你的QT工程项目的目录。用写字版打开你的QT工程文件(如 "myapp.pro" ),在里面最后新添一行
    RC_FILE = myapp.rc 保存,编译你的工程

    方法试了,是可以的。

  • 相关阅读:
    ecshop学习入门
    php跳转页面代码
    PHP验证登录用户名和密码
    使用self关键字调用类体中的静态成员
    PHP中读取文件的几个方法
    MVC5 Entity Framework学习之更新相关数据
    global.asax文件的应用
    DbSet<TEntity> 类
    IDisposable接口详解
    bzoj 3240: [Noi2013]矩阵游戏 矩阵乘法+十进制快速幂+常数优化
  • 原文地址:https://www.cnblogs.com/hnrainll/p/2106998.html
Copyright © 2011-2022 走看看