我正在使用PyQt5和QT设计器来开发用户界面。我创建了一个小部件,在其中放置了一些组件,并将它们作为表单分发。
问题在于,每次在小部件内放置一个组件时,其样式都会改变。例如,在下面的标题中,红色矩形在小部件内部显示一个组合框,绿色矩形在小部件外部显示相同的组合框。
我想将组合框保留在小部件内,但使用绿色矩形中的样式。
编辑:
以下代码在其下创建图像:
<?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">
<widget class="QWidget" name="widget" native="true">
<property name="geometry">
<rect>
<x>260</x>
<y>110</y>
<width>201</width>
<height>51</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(240, 240, 240);</string>
</property>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>20</x>
<y>20</y>
<width>60</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string>Gender</string>
</property>
</widget>
<widget class="QComboBox" name="comboBox">
<property name="geometry">
<rect>
<x>80</x>
<y>10</y>
<width>104</width>
<height>26</height>
</rect>
</property>
</widget>
</widget>
<widget class="QComboBox" name="comboBox_2">
<property name="geometry">
<rect>
<x>340</x>
<y>170</y>
<width>104</width>
<height>26</height>
</rect>
</property>
<item>
<property name="text">
<string>Gender</string>
</property>
</item>
</widget>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>22</height>
</rect>
</property>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>