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.
有没有PyQt Widget等价的tkinter LabelFrame?像这样的东西
PyQt Widget
tkinter LabelFrame
到目前为止,我只发现QtGui.QFrame它的工作方式似乎与tkinter LabelFrame. 我错过了什么吗?
QtGui.QFrame
为此,您可以使用 QGroupBox。
self.frame = QtGui.QGroupBox(self) self.frame.setTitle("Hello World")