質問

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;
}
役に立ちましたか?

解決

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

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

他のヒント

I suggest

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

for the title, to adjust the title more properly.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top