Border of qgroupbox

会有一股神秘感。 提交于 2019-12-03 08:35:56

问题


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

my aim is to have something like this:

but so far all I can get is this:

the stylesheet i'm using:

#groupBox {
    border: 1px solid gray;
    border-radius: 9px;
}

回答1:


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

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



回答2:


I suggest

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

for the title, to adjust the title more properly.



来源:https://stackoverflow.com/questions/14582591/border-of-qgroupbox

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!