You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
450 B
C++

2 years ago
2 years ago
#include "MainWindow.h"
2 years ago
#include "./LoginUI/Login.h"
2 years ago
#include <QApplication>
2 years ago
#include <QFile>
2 years ago
#include <QDebug>
2 years ago
int main(int argc, char *argv[])
{
2 years ago
QApplication app(argc, argv);
QFile styleFile(":/Static/DamQSS.Qss");
styleFile.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(styleFile.readAll());
2 years ago
// qDebug() << styleSheet;
2 years ago
app.setStyleSheet(styleSheet);
2 years ago
MainWindow w;
w.show();
2 years ago
return app.exec();
2 years ago
}