如何为按钮提供背景颜色和悬停颜色?
我希望我的按钮具有蓝色背景,然后当您将鼠标悬停在按钮上时具有绿色背景。
这是我的代码:
self.button.setStyleSheet("background-color:blue")
self.button.setStyleSheet("QPushButton::hover"
"{"
"background-color:green;"
"}")
如何使这两行同时工作?
I want my button to have a blue background, then a green background when you hover the mouse over it.
This is my code:
self.button.setStyleSheet("background-color:blue")
self.button.setStyleSheet("QPushButton::hover"
"{"
"background-color:green;"
"}")
How can I make these two lines work at the same time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需加入 qt 样式表即可:
Just join the qt stylesheets: