#include "widget.h" #include "ui_widget.h" #include <QPushButton> Widget::Widget(QWidget *parent) : QWidget(parent) , ui(new Ui::Widget) { ui->setupUi(this); // 第一个按钮 QPushButton * btn=new QPushButton; //show以顶层方式弹出窗口坤健 // btn->show(); //让队形依赖于widget窗口 btn->setParent(this); //显示文本 btn->setText("Hello,World"); // 创建第二个按钮,按照按钮的大小创建窗口 QPushButton * btn2=new QPushButton("第二个按钮",this); btn2->move(100,100); // 重置窗口大小 resize(600,400); // 设置固定窗口大小 setFixedSize(600,400); // 设置窗口标题 setWindowTitle("第一个窗口"); } Widget::~Widget() { delete ui; }