Files

16 lines
417 B
C++
Raw Permalink Normal View History

2026-03-26 10:45:29 +08:00
#include <QtWidgets/QApplication>
2026-04-17 16:25:19 +08:00
#include "APP/APP_Theme.h"
#include "APP/APP_UIWindow.h"
2026-03-26 10:45:29 +08:00
int main(int argc, char *argv[])
{
2026-04-17 16:25:19 +08:00
QApplication app(argc, argv);
app.setPalette(APP::APP_Theme::App_Func_GetPalette());
app.setFont(APP::APP_Theme::App_Func_GetBodyFont());
app.setStyleSheet(APP::APP_Theme::App_Func_GetStyleSheet());
APP::App_UIWindow window;
window.show();
return app.exec();
2026-03-26 10:45:29 +08:00
}