1 直接布局(move/setGeometry)

直接布局出来的窗口拖拽后,按钮的大小位置不会随之变换,就很垃圾;

直接布局
python def Init_UI(self): self.setGeometry(250,250,250,250) bt1 = QPushButton('按钮1',self) bt1.move(50,25) bt2 = QPushButton('按钮2',self) bt2.move(50,100) bt3 = QPushButton('按钮3',self) bt3.move(50,175) self.show() python def Init_UI(self): self.setGeometry(250,250,150,250) bt1 = QPushButton('按钮1',self) bt1.setGeometry(50,50,50,25) bt2 = QPushButton('按钮2',self) bt2.setGeometry(50,100,50,25) bt3 = QPushButton('按钮3',self) bt3.setGeometry(50,150,50,25) self.show()

2 箱式布局(QH/VBoxLayout)

**水平布局(QHBoxLayout) 竖直布局(QVBoxLayout)**
python import sys from PyQt6.QtWidgets import (QMainWindow, QWidget, QPushButton, QApplication, QHBoxLayout, QVBoxLayout) class Example(QMainWindow): def __init__(self): super().__init__() self.Init_UI() def Init_UI(self): self.setGeometry(250,250,500,250) bt1 = QPushButton('按钮1', self) bt2 = QPushButton('按钮2', self) bt3 = QPushButton('按钮3', self) # 创建水平布局栏 hbox = QHBoxLayout() # 在水平布局栏中添加一个空位(拉伸因子) hbox.addStretch(1) # 在水平布局栏中添加组件 hbox.addWidget(bt1) hbox.addWidget(bt2) hbox.addWidget(bt3) # 创建竖直布局栏 vbox = QVBoxLayout() # 在竖直布局栏中添加一个空位(拉伸因子) vbox.addStretch(1) # 箱式布局栏设置为窗口布局 vbox.addLayout(hbox) widget = QWidget() # 窗口中放置竖直布局栏 widget.setLayout(vbox) self.setCentralWidget(widget) self.show() if __name__ == '__main__': app = QApplication(sys.argv) ex = Example() app.exit(app.exec())
注释
+ 布局栏放置方式:
- 箱式布局只能放置在 QWidget 窗口中,不能直接放在 QMainWindow 窗口中。若想实现后者,则需要先将箱式布局放置在 QWidget 窗口中,再将 QWidget 窗口作为组件填充 QMainWindow 窗口;
+ 布局栏对齐方式:
- 先将窗口横向或纵向长度减去所有组件的横向或纵向的长度,再按照拉伸因子等比例分配;
- 当只有一侧有拉伸因子,则组件们布局后向反方向对齐;
- 当两侧都有相同长度拉伸因子,则组件们布局后居中对齐;
+ 最适用场景:
- 分配按钮位置;

3 栅格布局(QGridLayout)

栅格布局 — QGridLayout
python import sys from PyQt6.QtWidgets import (QMainWindow, QWidget, QPushButton, QApplication, QVBoxLayout, QGridLayout, QLCDNumber) class QWindow(QMainWindow): def __init__(self): super().__init__() self.Init_UI() def Init_UI(self): # 创建栅栏布局栏 grid = QGridLayout() self.setGeometry(300,300,400,300) # 设置组件间间距 grid.setSpacing(10) names = ['A1', 'A2', 'A3', 'A4', 'B1', 'B2', 'B3', 'B4', 'C1', 'C2', 'C3'] positions = [(i,j) for i in range(0,3) for j in range(0,4)] # 先列后行 for position, name in zip(positions, names): if name == '': continue button = QPushButton(name) # 批量放置组件 grid.addWidget(button, *position) bt1 = QPushButton('D1') # 单独放置组件 grid.addWidget(bt1, 3, 0, 1, 0) # 0为起点,则宽写0时,为整行;其他起点,宽写0则不会放置组件。 vbox = QVBoxLayout() vbox.addStretch(1) # 栅栏布局栏设置为窗口布局 vbox.addLayout(grid) widget = QWidget() widget.setLayout(vbox) self.setCentralWidget(widget) self.setLayout(grid) self.show() if __name__ == '__main__': app = QApplication(sys.argv) ex = QWindow() app.exit(app.exec())

4 表单布局(QFormLayout)

直接布局(绝对定位)不能根据窗口的扩展自适应;

QBoxLayout、QGridLayout 需要指定拉伸系数。

表单布局 — QFormLayout
python import sys from PyQt6.QtWidgets import QMainWindow, QWidget, QApplication from PyQt6.QtWidgets import QLineEdit, QTextEdit, QLabel # 表单布局支持库 from PyQt6.QtWidgets import QFormLayout class Example(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): # 标签 titleLabel = QLabel('标题') authorLabel = QLabel('作者') # 文本框 titleEdit = QLineEdit() authorEdit = QLineEdit() contentEdit = QTextEdit() # 表单布局 # 创建表单布局栏 formLayout = QFormLayout() # 表单布局栏内逐行添加组件 formLayout.addRow(titleLabel, titleEdit) formLayout.addRow(authorLabel, authorEdit) formLayout.addRow('内容', contentEdit) # 字符串可替代标签(自动生成) # widget窗体嵌套 widget = QWidget() # 表单布局栏嵌入 widget 窗体 widget.setLayout(formLayout) self.setCentralWidget(widget) self.show() def main(): app = QApplication(sys.argv) ex = Example() sys.exit(app.exec()) if __name__ == '__main__': main()