Search code examples
qtbordergroupbox

Border of qgroupbox


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;
}

Solution

  • QGroupBox {
        border: 1px solid gray;
        border-radius: 9px;
        margin-top: 0.5em;
    }
    
    QGroupBox::title {
        subcontrol-origin: margin;
        left: 10px;
        padding: 0 3px 0 3px;
    }