在创建文件的时候不要选中Generate form这块
创建的文件如下图所示,比起之前的没有了form这一快
1、在mainwindow.h里面声明按钮对象
2、在mainwindow.cpp里实例化按钮
2.1、方法一
pushButton = new QPushButton();pushButton->show();
但是发现显示是分离的
2.2、方法二:显示在MainWindow上面,将MainWindow传递过来就可以了
pushButton = new QPushButton(this);pushButton->show();
2.3、在按钮上添加文本 ,在pushButtun的函数里面没有,但是可以在他的父类里面找到
pushButton->setText("我是一个按钮");
2.4、设置按钮的位置,按钮不见了。
pushButton->setGeometry(50, 150, 100, 50);
2.5、因为窗口太小了,超出了父对象的范围,就要设置主窗口的大小
this->resize(800, 480);