以下为代码的简介
1 myWidget::myWidget(QWidget *parent) : 2 QWidget(parent), 3 ui(new Ui::myWidget) 4 { 5 ui->setupUi(this); 6 //创建一个按钮 7 QPushButton * btn = new QPushButton; 8 // btn->show(); 9 //让btn对象依赖在myWidget窗口中 10 btn->setParent(this); 11 //显示文本 12 btn->setText("第一个按钮"); 13 //第二个按钮创建的另一种方式 14 QPushButton * btn2 = new QPushButton("第二个按钮",this); 15 //设置窗口标题 16 this->setWindowTitle("我是第一个窗口"); 17 //移动btn2按钮 18 btn2->move(100,100); 19 //重置窗口大小 20 resize(600,400); 21 //设置窗口标题 22 setFixedSize(600,400); 23 24 25 }