通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
[TOC] ## 概述 ### qt 自带图标 mac ![](https://img.kancloud.cn/82/bc/82bc7f32e7f171b05ac28495c780e267_745x320.png) win ![](https://img.kancloud.cn/4f/b8/4fb84d197c5f2c85cf953c163580cca5_842x339.png) ## 示例 ### 使用系统自带的图标 ``` QAction *action1 = new QAction(tr("文件")); QStyle *style = QApplication::style(); QIcon icon1 = style->standardIcon(QStyle::SP_FileIcon); action1->setIcon(icon1); ```