1 Star 1 Fork 0

cxtan/cQtTools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
loadqss.cpp 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
cxtan 提交于 2022-06-21 18:38 . first commit
#include "loadqss.h"
#include <QIODevice>
#include <QFile>
#include <QDebug>
#include <QApplication>
LoadQss::LoadQss(QObject *parent) : QObject(parent)
{
}
void LoadQss::loadQss(QString fileName)
{
// 需要把所有文件中的 QSS 合并在一起
QString qss;
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly)) {
qDebug() << QString("打开 QSS 文件 %1 失败");
return;
}
qss.append(file.readAll()).append("\n");
if (!qss.isEmpty()) {
// qDebug() << qss;
qApp->setStyleSheet(qss);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/cxtan/cQtTools.git
git@gitee.com:cxtan/cQtTools.git
cxtan
cQtTools
cQtTools
master

搜索帮助