如何让QRadioButton正确显示焦点边框

时间:2016-11-16 12:24:46

标签: c++ qt

我正在努力解决我的qt项目上的焦点问题。

我拥有的: enter image description here

我需要什么: enter image description here

我不需要围绕圆圈边框,我需要修正右边距。 请不要担心单选按钮内的具体文字。

1 个答案:

答案 0 :(得分:0)

您可以使用QSS删除/更改选区边框:

QRadioButton:focus {
    border: none; /* or your modified border here */
}