toolButton 选中后的background-color
时间: 2023-04-03 17:01:29 浏览: 396
color_button.rar_button 背景颜色
我可以回答这个问题。toolButton 选中后的 background-color 可以通过设置 QToolButton::pressed 样式来实现。例如:
QToolButton::pressed {
background-color: #ccc;
}
这样,当用户点击 toolButton 时,它的背景色就会变成 #ccc。
阅读全文