确保你的项目中包含了 Qt Widgets 模块。
使用“document-new”图标创建一个按钮:
“`cpp
#include
#include
#include
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
QPushButton button(“New Document”);
// 设置“document-new”图标
button.setIcon(QIcon::fromTheme(“document-new”));
button.resize(200, 100);
button.show();
return app.exec();
}
“`
使用 `QIcon::fromTheme()` 时,确保你的系统支持并已安装相关图标主题。不同的桌面环境可能会提供不同的图标。
确保你的 Qt 环境配置正确,编译并运行程序,你将看到带有“document-new”图标的按钮。
通过上述步骤,你可以轻松使用 Qt 自带的“document-new”图标。如果图标未显示,检查系统图标主题是否包含该图标。
正文完