24

I'm having some trouble setting a border of a groupbox.

my aim is to have something like this:

enter image description here

but so far all I can get is this:

enter image description here

the stylesheet i'm using:

#groupBox {
    border: 1px solid gray;
    border-radius: 9px;
}
daniula
  • 6,898
  • 4
  • 32
  • 49
SamuelNLP
  • 4,038
  • 9
  • 59
  • 102

2 Answers2

50
QGroupBox {
    border: 1px solid gray;
    border-radius: 9px;
    margin-top: 0.5em;
}

QGroupBox::title {
    subcontrol-origin: margin;
    left: 10px;
    padding: 0 3px 0 3px;
}
york.beta
  • 1,787
  • 13
  • 16
0

I suggest

QGroupBox::title {
    subcontrol-origin: margin;
    left: 3px;
    padding: 3 0 3 0;
}

for the title, to adjust the title more properly.

DarkTrick
  • 2,447
  • 1
  • 21
  • 39