Hi,
I have a QGroupBox that is disabled and one of their childs have to be enabled.
Code:
pqGB->setDisabled(true); pqMyWidget->setEnabled(true); //Child of "pqGB"
But the widget is disabled.
Thanks,
Printable View
Hi,
I have a QGroupBox that is disabled and one of their childs have to be enabled.
Code:
pqGB->setDisabled(true); pqMyWidget->setEnabled(true); //Child of "pqGB"
But the widget is disabled.
Thanks,
You can't enable a child whose parent is disabled. What is the point of doing that?
Hi,
I have a 3 steps program that is represented on 3 QGroupBoxes that the user can do some things on every setp.
In the second step, one widget shows images, but in the third step I want to use the same wiget that is on the second group box to show images again. The problem is that the second group box is disabled to not let the user do somethings.
Thanks,