Qt-为应用程序添加logo
Posted 暗夜影
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt-为应用程序添加logo相关的知识,希望对你有一定的参考价值。
在Qt Creator中新建Qt Resource File,名字为logo.qrc
1.选择Add Prefix得到/new/prefix1
2.然后Add Files,将文件添加进去,如CA-DCP.png
3.在*.pro中添加: RESOURCES +=logo.qrc
4.在构造函数中添加:
setWindowIcon(QIcon(":/new/prefix1/CA-DCP.png"));
以上是关于Qt-为应用程序添加logo的主要内容,如果未能解决你的问题,请参考以下文章
26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段