如何设置toolbutton的鼠标进入的stylesheet
时间: 2024-02-17 18:02:18 浏览: 107
【Qt】仿360安全卫士(自定义ToolButton).rar
可以使用QToolButton的:hover伪状态设置鼠标进入时的样式,例如:
```python
button.setStyleSheet("QToolButton:hover { background-color: blue; color: white; }")
```
这会在鼠标进入时将背景色设置为蓝色,文字颜色设置为白色。你也可以根据需要设置其他属性。
阅读全文