窗口显示:Hello, World! ;
基于qt5;
//main.c
#include "mainwindow.h"
#include <QApplication>
#include <QPushButton> //按钮类的调用声明;
int main(int argc, char *argv[])
{
//创建并处理命令行变量;
QApplication a(argc, argv);
//定义一个hello按钮名称为"hello,world!"0为父窗口;
QPushButton hello( "Hello world!", 0 );
//定义hello窗口初始尺寸;
hello.resize( 100, 30 );
//显示hello窗口;
hello.show();
//main函数把控制交给qt;当程序退出时,exec()返回;
return a.exec();
}
运行效果
有任何问题请留言,感谢支持;