QT中QPushButton 设置background-color以后所产生的凸起怎么消除
时间: 2023-06-08 18:03:58 浏览: 380
Qt-QPushButton-QRadioButton-QCheckBox
您可以尝试设置按钮的边框样式为None来消除按钮的凸起效果,具体操作方式如下:
QPushButton{
background-color: #xxxxxx; /*设置按钮背景色*/
border-style: none; /*设置按钮边框样式为None*/
}
阅读全文