首先建立空项目文件,建立好之后创建C++源文件,通常取名为main,然后在project中添加一句

QT += widgets gui

接着在main函数中编程

Hello world

#include<QApplication>
#include<QWidget>
int main(int argc, char* argv[]){
    QApplication app(argc, argv);
    QWidget w;
    w.setWindowTitle("Hello World");
    w.setFixedSize(600,600);
    w.show();
    return app.exec();
}

Button

#include<QApplication>
#include<QWidget>
#include<QPushButton>
int main(int argc, char* argv[]){
    QApplication app(argc, argv);
    QWidget w;
    QPushButton button;
    button.setText("Press");
    button.setGeometry(150,150,100,80);
    button.setStyleSheet("background-color: rgb(0,255,255)");
    //button.setStyleSheet("color: red");
    button.setParent(&w);
    QObject::connect(&button,SIGNAL(clicked()),&w,SLOT(close()));
    w.setWindowTitle("Hello World");
    w.setFixedSize(400,400);
    w.show();
    return app.exec();
}

Login System