func:可以基本显示目标结果。

This commit is contained in:
2024-05-15 10:59:43 +08:00
parent 5cd8cec2a3
commit faa64d7ba2
16 changed files with 5670 additions and 8 deletions

View File

@@ -5,7 +5,15 @@
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
#ifdef _WIN32
QFont font("Microsoft YaHei", 10);
a.setFont(font);
a.setStyle("windows xp");
#endif
MainWidget w;
w.set_work_exe(argv[0]);
w.show();
return a.exec();
}