qt QHBoxLayout详解

QHBoxLayout 是 Qt 框架中用于创建水平布局的类。它将子控件以横向的方式排列,并自动调整大小,以适应父窗口的尺寸变化。

重要方法

  • QHBoxLayout(QWidget *parent = nullptr):创建一个 QHBoxLayout 对象,并指定其父窗口部件。

  • **addWidget(QWidget *widget, int stretch = 0, Qt::Alignment alignment = 0):**向布局中添加一个控件。

  • **addLayout(QLayout *layout, int stretch = 0):**向布局中添加另一个布局。

  • **addSpacerItem(QSpacerItem *spacer):**向布局中添加一个间隔项,用于控制空间分配。

  • **removeWidget(QWidget *widget):**从布局中移除指定的控件。

  • **count() const:**返回布局中控件的数量。

  • **itemAt(int index) const:**返回指定索引处的布局项。

  • **setStretch(int index, int stretch):**设置指定控件的伸缩因子,控制其在布局中占用的空间比例。

  • **setSpacing(int spacing):**设置控件之间的间距。

  • **setContentsMargins(int left, int top, int right, int bottom):**设置布局的边距。

  • insertWidget(int , QWidget *, int , Qt::Alignment ):**在布局的指定位置插入一个子控件。

    #include <QApplication>
    #include <QWidget>
    #include <QHBoxLayout>
    #include <QPushButton>
    #include <QLineEdit>
    #include <QLabel>

    class MyWidget : public QWidget {
    public:
    MyWidget() {
    QHBoxLayout *layout = new QHBoxLayout(this);

          QLabel *label = new QLabel("Name:", this);
          layout->addWidget(label);
    
          QLineEdit *lineEdit = new QLineEdit(this);
          layout->addWidget(lineEdit);
    
          QPushButton *button = new QPushButton("Submit", this);
          layout->addWidget(button);
    
          layout->setSpacing(10); // 设置控件间距
          layout->setContentsMargins(5, 5, 5, 5); // 设置边距
    
          setLayout(layout);
      }
    

    };

    int main(int argc, char *argv[]) {
    QApplication app(argc, argv);

      MyWidget widget;
      widget.resize(300, 100);
      widget.show();
    
      return app.exec();
    

    }

觉得有帮助的话,打赏一下呗。。

相关推荐
双子座断点2 小时前
QT 机器视觉 (3. 虚拟相机SDK、测试工具)
qt·1024程序员节
姓刘的哦4 小时前
Qt中的QCustomPlot学习记录
qt
yy_xzz4 小时前
QT编译报错:-1: error: cannot find -lGL
开发语言·qt
cpp_learners8 小时前
QT 从ttf文件中读取图标
qt·ttf·图标
蜗蜗20128 小时前
chat_gpt回答:qt中,常见格式及格式转换
开发语言·qt
四维碎片8 小时前
【Qt】QApplication::restoreOverrideCursor():恢复鼠标光标到原始状态的用法解析
开发语言·qt·计算机外设
x县豆瓣酱10 小时前
qt配置https请求
开发语言·qt·https
很楠不爱10 小时前
Qt——信号和槽
服务器·数据库·qt
houyawei_NO111 小时前
QT相机连接与拍照
开发语言·qt
末时清12 小时前
QT交互界面:实现按钮运行脚本程序
开发语言·qt·交互