I have a group of three QRadioButtons and three QGroupBoxes on my Pyside2 window application. When I click one radio button - a group box gets enabled.
if self.ui.radioButton_1.isChecked():
self.ui.groupBox_1.setEnabled(True)
self.ui.groupBox_2.setEnabled(False)
self.ui.groupBox_3.setEnabled(False)
elif self.ui.radioButton_2.isChecked():
self.ui.groupBox_1.setEnabled(False)
self.ui.groupBox_2.setEnabled(True)
self.ui.groupBox_3.setEnabled(False)
elif self.ui.radioButton_3.isChecked():
self.ui.groupBox_1.setEnabled(False)
self.ui.groupBox_2.setEnabled(False)
self.ui.groupBox_3.setEnabled(True)
Is it possible via implementing styles or enabling some option in Qt Designer to make borders of a chosen QGroupBox colored on activation? Something like this:
The exact width of green lines in not important, the colored border lightening matters only.
You can set a border in the style sheet for QGroupBox with the
:enabled
pseudo-state.