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.
ウィジェットではなくレイアウトを追加するにはどうすればよいQtGui.QTabWidgetですか? このようなもの:
QtGui.QTabWidget
tabs = QtGui.QTabWidget() tabs.addTab(QtGui.QVBoxLayout(), "Layout")
タブ ウィジェットにレイアウトを追加するのではなく、ウィジェットを追加します。
ここでの最も簡単な選択はQFrame(または単純なQWidget) であり、任意のレイアウトを設定できます。
QFrame
QWidget