Qt第一个项目

创建一个按钮

主要内容

头文件:include

 //创建一个按钮

QPushButton*p=new QPushButton;

以顶层方式弹出窗口控件:p->show();

让控件放置在窗口中:setParent(this);

显示文本:setText();

按照控件大小创建在窗口:QPushButton *p2=new QPushButton(,this);

固定点位move();

重置窗口大小:resize();

固定窗口大小: setFixedSize();

设置窗口标题:setWindowTitle();

在qt文档搜索QPushButton

创建按钮有4中方式

Qt第一个项目_第1张图片

1 . 参数 :  为QWidget 类型 的 作为按键的父类

2. 参数1 : QString类型 作为按钮上的文本 参数2: QWidget

3. 参数1:  QIcon 可以设置图标 参数2:QString 参数3:QWidget

4.可以不给参数

#include 
Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
{
    ui->setupUi(this);
    //第一种创建方法
    QPushButton *pushbutton1=new QPushButton;
    //设置按键中显示文本
    pushbutton1->setText("1111111");
    //指定按键的父类
    pushbutton1->setParent(this);
    //设置按钮大小
    pushbutton1->setFixedSize(200,200);
    //可以设置窗口大小
    resize(600,600);
    //修改窗口标题
    setWindowTitle("第一个qt文件");

    //未设置父类的话可以使用pushbutton->show();来显示按钮(在另一个窗口)

    //第二种创建方式
    QPushButton *pushbutton2=new QPushButton("5555555",this);
    pushbutton2->move(500,500);


    //第三种
    //                      \\在qt中才表示 \  可用/代替
    //  QIcon("图标文件地址")
    QPushButton *pushbutton3=new QPushButton(QIcon("E:\\图片\\132eb06b80694d55a1367bd74a78b154"),"6666666",this);
    pushbutton3->move(200,200);
}

Qt第一个项目_第2张图片

你可能感兴趣的:(个人Qt学习,qt5)