gpt4 book ai didi

python - 如何在 PyQt 中获取按钮或标签(QPushButton、QLabel)的背景颜色

转载 作者:行者123 更新时间:2023-12-02 01:10:56 24 4
gpt4 key购买 nike

我对 PyQt 还很陌生。有谁告诉我如何在 PyQt 中获取按钮或标签(QPushButton、QLabel)的背景颜色。

最佳答案

这是一个示例代码。这会对你有所帮助。

QPushButton button1, button2;
button1.setStyleSheet("background-color:#ff0000;");

//To get Background color
QColor color = button1.palette().button().color();

//To set fetched color
button2.setStyleSheet("background-color:" + color.name() +";");

关于python - 如何在 PyQt 中获取按钮或标签(QPushButton、QLabel)的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17271366/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com