【发布时间】:2018-10-15 06:50:38
【问题描述】:
我得到了这个布局:
但我想将第一个文本框与第二个文本框对齐,如下所示:
但不必创建一个无用的按钮来填充空间。
这是我想出的最小示例代码:
import sys
from PyQt5 import QtGui
from PyQt5 import QtWidgets
from PyQt5.QtGui import *
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
def main():
app = QtWidgets.QApplication(sys.argv)
programWindow = ProgramWindow()
programWindow.show()
sys.exit(app.exec_())
class ProgramWindow(QtWidgets.QMainWindow):
def __init__(self):
QtWidgets.QMainWindow.__init__(self)
self.setup_main_window()
self.first_input_text()
self.second_input_text()
self.set_window_layout()
def setup_main_window(self):
self.resize( 800, 600 )
self.centralwidget = QWidget()
self.setCentralWidget( self.centralwidget )
def first_input_text(self):
self.textEditWidget1 = QPlainTextEdit( self )
self.startSimulationButton1 = QPushButton( "Start Simulation" )
self.startSimulationButtonDumb = QPushButton( "Start Simulation fillingg" )
verticalInnerLayout = QVBoxLayout()
verticalInnerLayout.addWidget( self.startSimulationButton1 )
verticalInnerLayout.addWidget( self.startSimulationButtonDumb )
horizontalInnerLayout = QHBoxLayout()
horizontalInnerLayout.addLayout( verticalInnerLayout )
horizontalInnerLayout.addWidget( self.textEditWidget1 )
self.groupBox1 = QGroupBox( "First Group" )
self.groupBox1.setLayout( horizontalInnerLayout )
def second_input_text(self):
self.textEditWidget2 = QPlainTextEdit( self )
self.startSimulationButton2 = QPushButton( "Start Simulation bigger" )
verticalInnerLayout = QVBoxLayout()
verticalInnerLayout.addWidget( self.startSimulationButton2 )
horizontalInnerLayout = QHBoxLayout()
horizontalInnerLayout.addLayout( verticalInnerLayout )
horizontalInnerLayout.addWidget( self.textEditWidget2 )
self.groupBox2 = QGroupBox( "Second Group" )
self.groupBox2.setLayout( horizontalInnerLayout )
def set_window_layout(self):
main_vertical_layout = QVBoxLayout( self.centralwidget )
main_vertical_layout.addWidget( self.groupBox1 )
main_vertical_layout.addWidget( self.groupBox2 )
if __name__ == "__main__":
main()
【问题讨论】:
标签: python python-3.x layout pyqt pyqt5