1 Star 0 Fork 0

HarkerHand/OOPM

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.cpp 844 Bytes
一键复制 编辑 原始数据 按行查看 历史
HarkerHand 提交于 2024-08-28 15:15 . 加入了中文翻译
#include "MainWindow.h"
#include <QApplication>
#include <QTextStream>
#include <QDebug>
#include <QTranslator>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QFont font("小米兰亭"); // 字体名称和大小
app.setFont(font);
QFile file(":/styles/darkstyle.qss");
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
// 打印错误信息到标准错误输出
qWarning() << "Failed to open file:" << file.errorString();
return -1; // 或者其他错误处理
}
QTextStream stream(&file);
QString styleSheet = stream.readAll();
app.setStyleSheet(styleSheet);
QTranslator trans;
if(trans.load(":/Lang/OOPM_zh_CN.qm"))
{
app.installTranslator(&trans);
}
MainWindow mainWindow;
mainWindow.show();
return app.exec();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/harkerhand/OOPM.git
git@gitee.com:harkerhand/OOPM.git
harkerhand
OOPM
OOPM
master

搜索帮助