QApplication&QPushButton

#include <QApplication>
#include <QPushButton>
int main(int argc, char *argv[])
{
        QApplication app(argc, argv);
        QPushButton *button = new QPushButton("Quit");
        QObject::connect(button, SIGNAL(clicked()),
        &app, SLOT(quit()));
        button->show();
    return app.exec();
 }

你可能感兴趣的:(QApplication&QPushButton)