Remove QGroupBox Space
-
How can i remove QGroupbox space
i already test
@groupbox->setStyleSheet("QGroupBox::title { border: 0px ; border-radius: 0px; padding: 0px 0px 0px 0px; margin = 0px 0px 0px 0px } QGroupBox { border: 0px ; border-radius: 0px; padding: 0px 0px 0px 0px;} ");
@
it reduce the space but not perfectly done!
how can i remove space completely
u can c a few space and margin in second radio group but not in first in follow image
!http://axgig.com/images/42241377009986391810.png(screenshot)!thanks
-
in follow picture i located the groupbox with gray rectangle
the above radioboxes are without groupbox and only layout used!http://axgig.com/images/30296945634705783323.jpg(as)!
i'm trying to tag radiobox so each of four work independtly
if there is any other way to do so i appreciate it -
I don't understand what space do you need to remove.
Is it the space between each radiobutton?Right now it looks like this:
@
|o null |o null |o null |o null |
@Are you trying to put them close to each other like this:
@
|o null |o null |o null |o null |
@If so, then you can create a horizontal layout put all groupboxes together and add horizontal spacer to fill rest of the place.
If it is not what you need then, please, draw a picture of your desired design.
-
Hi,
did you try this:
@
group->setVisible(false); //that code will hide the QGroupBox widget
@about the radioboxes, create them with the same parent, so they will work dependently
try something like this:
@
QHBoxLayout *ly = new QHBoxLayout;
QGroupBox *group = new QGroupBox("Countries");
QWidget *widget = new QWidget;QRadioBox *r1 = new QRadioBox(tr("Ivory coast"),widget);
QRadioBox *r2= new QRadioBox(tr("Germany"),widget);
QRadioBox *r3 = new QRadioBox(tr("USA"),widget);
ly->addWidget(r1);
ly->addWidget(r2);
ly->addWidget(r3);
group->setLayout(ly);
//and other code
@