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.
在 wxPython 中,是否有以下简短形式:
size = object.GetBestSize() object.SetSize(size)
(对于控件或框架和对话框。).Layout()仅调整子控件的大小。
.Layout()
在SWT中有.pack()这个。
.pack()
除非您明确设置小部件的大小,否则它们通常已经调整到正确的大小。如果您将小部件添加到 sizer 并告诉它们拉伸,那么当然不会出现这种情况。您也可以使用 sizer 的 Fit() 方法来强制它,尽管我很少认为这是必要的。