mirror of
https://github.com/Karllzy/cotton_color.git
synced 2025-11-08 18:53:53 +00:00
14 lines
252 B
C++
14 lines
252 B
C++
//
|
|
// Created by zjc on 24-11-12.
|
|
//
|
|
|
|
#include "ui.h"
|
|
#include <QApplication>
|
|
#include <QPushButton>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QApplication app(argc, argv);
|
|
QPushButton button("Hello, Qt!");
|
|
button.show();
|
|
return app.exec();
|
|
} |