QT EXE/主畫面 ICON 切換/設定(設置)
QT EXE/主畫面 ICON 切換/設定(設置)
資料來源: https://stackoverflow.com/questions/29284643/how-to-set-an-icon-on-a-main-window-and-action-with-qt/29288097
https://blog.csdn.net/yizhou2010/article/details/52963192
RESOURCES:
01.Create a resources file named resources.qrc:
<!DOCTYPE RCC> <RCC version="1.0"> <qresource> <file>path/to/icon.png</file> </qresource> </RCC>
02.In your .pro file, include the resource:
TARGET = your_app TEMPLATE = app QT += widgets RESOURCES += path/to/resources.qrc
03.In qt designer,Set windowicon of the Widget with resources.qrc
RC_FILE:
設置程序圖標(Qt Creator環境)
第一步:創建一個包含圖標圖像的ICO文件,並將其保存在資源文件目錄下,例如命名為:myapp.ico;
圖片(png)轉ICO[線上工具]: https://icoconvert.com/
第二步:創建一個.rc文件(可以通過新建txt文件修改後綴),包含如下內容:
IDI_ICON1 ICON DISCARDABLE "myapp.ico"
第三步:在工程文件myapp.pro文件中寫入如下內容:
RC_FILE = myapp.rc