使内容和选项卡在 pyqt5 中可扩展

Make content and tab expandable in pyqt5

这是我试图在 QT Creator 中解决的问题。我想让选项卡小部件的内容以及选项卡小部件本身可以根据屏幕尺寸进行拉伸。到目前为止,我一直在 Whosebug 上寻找解决方案,但找不到任何解决方案。

一个小例子:

正如其他答案中所建议的,我将所有内容组织在具有这些属性的网格布局中。

事实上,我什至为列表中的所有对象添加了相同的 Expanding 值。但尽管如此,当我以全屏尺寸打开它时,我仍然得到一个固定的标签小部件。

关于如何使选项卡小部件填充所有周围区域的任何建议space?提前致谢!

更新 1: 也分享我的 .ui https://gist.github.com/Ren22/41ca0dc0333a360775aec530d6f38a62

尺寸策略仅在小部件几何形状由布局处理时才有效,因此解决方案是将 QTabWidget 设置为 centralwidget 以右键单击 QTabWidget 外部但在 QMainWindow 内部的区域,然后单击在 Qt Designer 顶部的图标 ​​ or 图标上生成以下内容:

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>MainWindow</class>
 <widget class="QMainWindow" name="MainWindow">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>800</width>
    <height>600</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>MainWindow</string>
  </property>
  <widget class="QWidget" name="centralwidget">
   <layout class="QVBoxLayout" name="verticalLayout">
    <item>
     <widget class="QTabWidget" name="tabWidget">
      <widget class="QWidget" name="tab">
       <attribute name="title">
        <string>Tab 1</string>
       </attribute>
       <layout class="QVBoxLayout" name="verticalLayout_2">
        <item>
         <widget class="QListWidget" name="listWidget"/>
        </item>
        <item>
         <widget class="QPushButton" name="pushButton">
          <property name="text">
           <string>PushButton</string>
          </property>
         </widget>
        </item>
       </layout>
      </widget>
      <widget class="QWidget" name="tab_2">
       <attribute name="title">
        <string>Tab 2</string>
       </attribute>
      </widget>
     </widget>
    </item>
   </layout>
  </widget>
  <widget class="QMenuBar" name="menubar">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>800</width>
     <height>30</height>
    </rect>
   </property>
  </widget>
  <widget class="QStatusBar" name="statusbar"/>
 </widget>
 <resources/>
 <connections/>
</ui>