QLayout的属性介绍


主要包括QBoxLayout、和QGridLayout以及QFormLayout等的参数类似。

 

我主要说明一下QGridLayout在QtDesigner中它的属性的意义,以及QFormLayout的部分属性

 

 

 

一、QGridLayout属性介绍

 

1、QGridlayout以方格的形式管理窗口部件,先看QGridLayout的属性,如下图

2、各个参数的介绍

layoutLeftMargin ...至layoutBottomMargin在ui_MainWindow.h中自动生成的代码是:

gridLayout->setContentsMargins(20, 10, 10, 10);

学过CSS都知道,这是设置一个元素所有外边距的宽度,或者设置各边上外边距的宽度

On most platforms, the margin is 11 pixels in all directions.

 

HorizontalSpacing...至VerticalSpacing在ui_MainWindow.h中自动生成的代码是:

 

        gridLayout->setHorizontalSpacing(6);

        gridLayout->setVerticalSpacing(6);

        这是设置两个控件之间的水平和竖直距离

 

LayoutRowStretch在ui_MainWindow.h中自动生成的代码是:

 

gridLayout->setRowStretch(0, 1);

        gridLayout->setRowStretch(1, 1);

        gridLayout->setRowStretch(2, 1);

表示在第0行、第1行、第2行 在竖直方向的空间比例分配,大家稍微改一下参数就能看出来效果

LayoutColumnStretch在ui_MainWindow.h中自动生成的代码是:      

gridLayout->setColumnStretch(1, 1);

 

表示设置第0列、第1列两者在水平方向的空间比例分配。

 

 

LayoutRowMinimumHeight在ui_MainWindow.h中自动生成的代码是:

 

        gridLayout->setRowMinimumHeight(0, 1);

        gridLayout->setRowMinimumHeight(1, 2);

        gridLayout->setRowMinimumHeight(2, 3);

表示在第0行、第1行、第2行的最小高度是1pixels,2pixels,3pixels

LayoutColumnMinimumWidth在ui_MainWindow.h中自动生成的代码是:

 

  gridLayout->setColumnMinimumWidth(0, 4);

        gridLayout->setColumnMinimumWidth(1, 5);

表示设置第0列、第1列的最小宽度是4pixels、5pixels

 

 

LayoutSizeConstraint在ui_MainWindow.h中自动生成的代码是:

gridLayout->setSizeConstraint(QLayout::SetDefaultConstraint);

 

This property holds the resize mode of the layout.看下表

 

 

 

 

enum QLayout::SizeConstraint

The possible values are:

ConstantValueDescription
QLayout::SetDefaultConstraint0The main widget's minimum size is set to minimumSize(), unless the widget already has a minimum size.
QLayout::SetFixedSize3The main widget's size is set to sizeHint(); it cannot be resized at all.
QLayout::SetMinimumSize2The main widget's minimum size is set to minimumSize(); it cannot be smaller.
QLayout::SetMaximumSize4The main widget's maximum size is set to maximumSize(); it cannot be larger.
QLayout::SetMinAndMaxSize5The main widget's minimum size is set to minimumSize() and its maximum size is set tomaximumSize().
QLayout::SetNoConstraint1

The widget is not constrained.

 

 

 

QFormLayout属性介绍

1、QFormLayout类管理输入型控件和它的label组成的那些form表格,包括它的界面参数如下图

 

 

2、界面中对应的代码如下表,

 

 

formLayout = new QFormLayout(widget1);
        formLayout->setSpacing(6);
        formLayout->setContentsMargins(11, 11, 11, 11);
        formLayout->setObjectName(QString::fromUtf8("formLayout"));
        formLayout->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
        formLayout->setRowWrapPolicy(QFormLayout::DontWrapRows);
        formLayout->setContentsMargins(0, 0, 0, 0);
        label_4 = new QLabel(widget1);
        label_4->setObjectName(QString::fromUtf8("label_4"));

        formLayout->setWidget(0, QFormLayout::LabelRole, label_4);

        lineEdit = new QLineEdit(widget1);
        lineEdit->setObjectName(QString::fromUtf8("lineEdit"));

        formLayout->setWidget(0, QFormLayout::FieldRole, lineEdit);

        label_5 = new QLabel(widget1);
        label_5->setObjectName(QString::fromUtf8("label_5"));

        formLayout->setWidget(1, QFormLayout::LabelRole, label_5);

        comboBox = new QComboBox(widget1);
        comboBox->setObjectName(QString::fromUtf8("comboBox"));

        formLayout->setWidget(1, QFormLayout::FieldRole, comboBox);

 

3、其中值得一说的是:LayoutFieldGrowthPolicy属性

 

enum QFormLayout::FieldGrowthPolicy

This enum specifies the different policies that can be used to control the way in which the form's fields grow.

ConstantValueDescription
QFormLayout::FieldsStayAtSizeHint0The fields never grow beyond their effective size hint. This is the default forQMacStyle.
QFormLayout::ExpandingFieldsGrow1Fields with an horizontal size policy of Expanding or MinimumExpanding will grow to fill the available space. The other fields will not grow beyond their effective size hint. This is the default policy for Plastique.
QFormLayout::AllNonFixedFieldsGrow2All fields with a size policy that allows them to grow will grow to fill the available space. This is the default policy for most styles.

 

 

 

4、还有一个属性值得说:LayoutRowWrapPolicy

 

This property holds the way in which the form's rows wrap.

//这个属性设置了表格如何排版各个元素

If you want to display each label above its associated field (instead of next to it), set this property to WrapAllRows.

//如果你想把每个标签放在相关字段的上方,而不是和它相邻,就设置这个属性值为WrapAllRows。

 

enum QFormLayout::RowWrapPolicy

This enum specifies the different policies that can be used to control the way in which the form's rows wrap.

ConstantValueDescription
QFormLayout::DontWrapRows0Fields are always laid out next to their label. This is the default policy for all styles except Qt Extended styles and QS60Style.
QFormLayout::WrapLongRows1Labels are given enough horizontal space to fit the widest label, and the rest of the space is given to the fields. If the minimum size of a field pair is wider than the available space, the field is wrapped to the next line. This is the default policy for Qt Extended styles and andQS60Style.
QFormLayout::WrapAllRows2Fields are always laid out below their label.

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
在 Qt 中,可以通过设置控件的布局来实现控件大小随窗口大小变化。Qt 提供了多种布局方式,包括水平布局、垂直布局、网格布局等。这里以水平布局为例,介绍如何让控件大小随窗口大小变化。 1. 在 Qt Designer 中选中需要自动调整大小的控件,右键点击选择“布局”->“水平布局”。 2. 在“属性编辑器”中,选中“水平布局”,将“sizeConstraint”属性设置为“QLayout::SetDefaultConstraint”。 3. 在“属性编辑器”中,选中“水平布局”,将“stretch”属性设置为“1”。 4. 保存并运行程序,窗口大小变化时,控件大小会随着窗口大小变化。 下面是一个示例代码: ```python from PyQt5.QtWidgets import QApplication, QHBoxLayout, QLabel, QLineEdit, QWidget app = QApplication([]) window = QWidget() # 创建水平布局 layout = QHBoxLayout() # 创建标签和文本框控件 label = QLabel('Label:') edit = QLineEdit() # 将控件添加到布局中 layout.addWidget(label) layout.addWidget(edit) # 设置控件大小随窗口大小变化 layout.setSizeConstraint(QLayout.SetDefaultConstraint) layout.setStretch(1, 1) # 将布局应用到窗口中 window.setLayout(layout) window.show() app.exec_() ``` 在上面的示例代码中,我们创建了一个水平布局,并将标签和文本框控件添加到布局中。然后,我们通过设置布局的“sizeConstraint”属性和“stretch”属性,实现了控件大小随窗口大小变化。最后,我们将布局应用到窗口中,并显示窗口。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值