3 Star 5 Fork 4

李登奇/HP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 347 Bytes
一键复制 编辑 原始数据 按行查看 历史
李登奇 提交于 2022-11-28 10:19 . 轻微功能
#include "FormMain.h"
#include <QApplication>
#include <QFile>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QFile file(QString("%1").arg(":/System/Image/black.css"));
file.open(QFile::ReadOnly);
QString css =file.readAll();
qApp->setStyleSheet(css);
FormMain w;
w.show();
return a.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/lidengqi/hp.git
git@gitee.com:lidengqi/hp.git
lidengqi
hp
HP
master

搜索帮助