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.
21 lines
402 B
C++
21 lines
402 B
C++
|
|
#include "MainWindow.h"
|
|
#include "./LoginUI/Login.h"
|
|
#include <QApplication>
|
|
#include <QFile>
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
QFile styleFile(":/Static/DamQSS.Qss");
|
|
styleFile.open(QFile::ReadOnly);
|
|
QString styleSheet = QLatin1String(styleFile.readAll());
|
|
app.setStyleSheet(styleSheet);
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
return app.exec();
|
|
}
|