如何在 QStatusBar 中获取彩色瞬态消息?
更改调色板或设置样式表将不限于当前消息。
更改样式表不一定适用于程序中的所有小部件。您绝对可以限制样式表的范围。
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QTimer>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
// the stylesheet can be applied within ui->statusBar hierarchy of
// objects, but you can make it even more narrow scope as
// ui->statusBar->setStyleSheet("QStatusBar{color:red}") if needed
ui->statusBar->setStyleSheet("color: red");
ui->statusBar->showMessage("Text!");
QTimer::singleShot(2000, this, SLOT(tryAnotherColor()));
}
void MainWindow::tryAnotherColor()
{
ui->statusBar->setStyleSheet("color: blue");
ui->statusBar->showMessage("More Text!");
}
我尝试使用富文本
我的猜测是,并非所有 Qt 小部件控件都具有富文本呈现功能,但大多数都理解类似 CSS 的样式表。