在特定时间内更改 QLabel 的背景颜色



我的Qt代码中有一个具有定义背景颜色的QLabel。

我会在一个函数中只更改背景颜色一秒钟,然后将其设置回原始颜色。

我想过使用 sleep(( 函数,但有没有办法在不阻止其余程序活动的情况下做到这一点?

谢谢!

你必须使用QTimer::singleShot(...)QPalette

#include <QApplication>
#include <QLabel>
#include <QTimer>
class Label: public QLabel{
public:
using QLabel::QLabel;
void changeBackgroundColor(const QColor & color){
QPalette pal = palette();
pal.setColor(QPalette::Window, color);
setPalette(pal);
}
void changeBackgroundColorWithTimer(const QColor & color, int timeout=1000){
QColor defaultColor = palette().color(QPalette::Window);
changeBackgroundColor(color);
QTimer::singleShot(timeout, [this, defaultColor](){
changeBackgroundColor(defaultColor);
});
}
};
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Label label;
label.setText("Hello World");
label.show();
label.changeBackgroundColorWithTimer(Qt::green, 2000);
return a.exec();
}

也许你可以用QTimer等一秒钟。 使用timer->start(1000)等待一秒钟,并在类中创建一个 SLOT,用于接收Qtimer::timeOut信号以更改标签背景颜色。

相关内容

  • 没有找到相关文章

最新更新