Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / main.cpp
lixanchuan on 29 Feb 2024 507 bytes no commit message
#include "loginwindow.h"
#include "mainwindow.h"
#include <QApplication>
#include "indexWindow.h"
#include "testview.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    // 加载外部的CSS文件
    a.setStyleSheet("file:///path/to/styles.css");
    //设置字体
    QFont font;
    font.setFamily("Microsoft Yahei");
    font.setPixelSize(13);
    a.setFont(font);

    //TestView s;
    //s.show();
    loginWindow w;
    w.show();
    return a.exec();
}