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.
如何在 a 中添加布局而不是小部件QtGui.QTabWidget?像这样的东西:
QtGui.QTabWidget
tabs = QtGui.QTabWidget() tabs.addTab(QtGui.QVBoxLayout(), "Layout")
您不会将布局添加到选项卡小部件,而是添加小部件。
这里最简单的选择是 a QFrame(甚至是 plain QWidget),你可以设置你想要的任何布局。
QFrame
QWidget