码迷,mamicode.com
首页 > 其他好文 > 详细

用Qt在窗口中创建按钮

时间:2020-06-05 00:57:50      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:标题   end   get   style   一个   resize   ext   span   first   

//mywidget.cpp

#include "mywidget.h" #include <QPushButton> MyWidget::MyWidget(QWidget *parent) : QWidget(parent) { #if 1 //创建第一个按钮 QPushButton *btn = new QPushButton; //btn->show(); //show是以顶层方式来弹出窗口控件 //让btn依附在myWidget窗口中 btn->setParent(this); //显示文本 //btn->setText("第一个按钮"); btn->setText("First button"); #endif //创建第二个按钮 这种构造方式,会按照控件的大小创建了MyWidget窗口 QPushButton *btn2 = new QPushButton("Second button", this); //字符串会自动转换为QString //移动btn按钮 btn2->move(100, 100); //重置窗口的大小 resize(600, 400); //设置固定窗口的大小 setFixedSize(600, 400); //设置窗口的标题 setWindowTitle("First Window"); } MyWidget::~MyWidget() { }

 

用Qt在窗口中创建按钮

标签:标题   end   get   style   一个   resize   ext   span   first   

原文地址:https://www.cnblogs.com/Stephen-Qin/p/13047208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!