QRadioButton
QRadioButton:!hover
{
color:white;
border-radius:10px;
border:1px solid rgb(170, 170, 127);
background-color: rgb(124, 225, 255);
font: 11pt "黑体";}
QRadioButton:hover
{
color:white;
font: 12pt "黑体";
border-radius:10px;
border:1px solid rgb(170, 170, 127);
background-color: rgb(170, 240, 0);
}
/* 单选框框圆点样式*/
QRadioButton::indicator:checked {
background-color: red;
border: 1px solid white;
border-radius:6px;
}
QRadioButton::indicator:unchecked {
background-color: white;
border: 1px solid white;
border-radius:6px;
}
本文来自博客园,作者:{archer},转载请注明原文链接:https://www.cnblogs.com/archer-mowei/p/15912997.html