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.
如何设置第一列的最小宽度QFormLayout?我可以QGridLayout通过使用来做到这一点QGridLayout::setColumnMinimumWidth(int, int),但找不到一种方法来做到这一点QFormLayout。
QFormLayout
QGridLayout
QGridLayout::setColumnMinimumWidth(int, int)
这很简单。只需在您插入第一列的任何小部件上设置最小宽度。
如何为 QFormLayout 的第一列设置最小宽度?
你不能(副手)。它不是为此而设计的,因为这听起来更像是一个QGridLayout功能。您可以重构您的设计以使用QGridLayout,或者您可以根据需要设置行的大小,但是您将在行内容而不是布局本身上执行该操作。