Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个小程序,其中包含一个QGroupBox像这样的其他小部件:
QGroupBox
我尝试了很多方法来管理尺寸的大小,QGroupBox以使高度与其余部分相同。除了使用方式之外setMaximumHeight,因为我希望大小也随着窗口大小而动态变化。我还能做些什么来管理布局?
setMaximumHeight
现在布局中有三个项目。布局将尝试填充可用空间。QLineEdit和QSpinBox(或任何你的第二个小部件)有 SizePolicy.vertical == 固定,所以所有额外的空间都去QGroupBox.
QLineEdit
QSpinBox
您有以下选择: