PyQt5编程(24):在窗口中布局组件—水平对齐和垂直对齐
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyQt5编程(24):在窗口中布局组件—水平对齐和垂直对齐相关的知识,希望对你有一定的参考价值。
参考技术A from PyQt5 import QtWidgetsimport sys
app = QtWidgets.QApplication(sys.argv)
window = QtWidgets.QWidget() # 父窗口
window.setWindowTitle("QHBoxLayout")
window.resize(300, 60)
button1 = QtWidgets.QPushButton("1")
button2 = QtWidgets.QPushButton("2")
hbox = QtWidgets.QHBoxLayout() # 创建容器
hbox.addWidget(button1) # 添加组件
hbox.addWidget(button2)
window.setLayout(hbox) # 指定父组件
window.show()
sys.exit(app.exec_())
以上是关于PyQt5编程(24):在窗口中布局组件—水平对齐和垂直对齐的主要内容,如果未能解决你的问题,请参考以下文章