QRadioButton color change on Selected and deselected Qt

后端 未结 3 737
-上瘾入骨i
-上瘾入骨i 2021-01-20 12:09

i am trying to change the color of radiobutton on selected and deselected as QtStylesheet :Qt Stylesheet

but In this link it only refer to Loading a Image but how cou

3条回答
  •  礼貌的吻别
    2021-01-20 12:40

    Setting style sheet to next works for me:

    QRadioButton:checked{
        background-color: red;
    }
    
    QRadioButton:unchecked{
       background-color: black;
    }
    

    Setting style sheet to QRadioButton::indicator:checked doesn't work, because this only changes the settings of the indicator.

提交回复
热议问题