如何为按钮提供背景颜色和悬停颜色?

发布于 2025-01-18 05:41:28 字数 312 浏览 1 评论 0原文

我希望我的按钮具有蓝色背景,然后当您将鼠标悬停在按钮上时具有绿色背景。

这是我的代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

内心旳酸楚 2025-01-25 05:41:28

只需加入 qt 样式表即可:

self.button.setStyleSheet(
    """
    QPushButton{
        background-color:blue;
    }
    QPushButton::hover{
        background-color:green;
    }
    """
)

Just join the qt stylesheets:

self.button.setStyleSheet(
    """
    QPushButton{
        background-color:blue;
    }
    QPushButton::hover{
        background-color:green;
    }
    """
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文