pe.setColor(QPalette::WindowText, Qt::red); QLabel *label = new QLabel(this); label->setPalette(pe); label->setText("Hello World"); 第二种,使用样式表如下: QLabel *label = new QLabel(this); label->setStyleSheet("background-color: rgb(250, 0, 0);font-size:60px;color:blue"); ...
pe.setColor(QPalette::WindowText, Qt::red); QLabel *label = new QLabel(this); label->setPalette(pe); label->setText("Hello World"); 第二种,使用样式表如下: QLabel *label = new QLabel(this); label->setStyleSheet("background-color: rgb(250, 0, 0);font-size:60px;color:blue"); ...
QT5如何设置QLabel中字体的颜色 QT5如何设置QLabel中字体的颜⾊ 如何使⽤Qt5,设置QLabel中字体的颜⾊。⼤致有⼏种做法:⼀是使⽤setPalette()⽅法;⼆是使⽤样式表;三是可以使⽤QStyle;四是可以在其中使⽤⼀些简单的HTML样式。第⼀种,使⽤setPalette()⽅法如下:QPalette pe;pe...
pe.setColor(QPalette::WindowText, Qt::red); QLabel *label = new QLabel(this); label->setPalette(pe); label->setText("Hello World"); 第二种,使用样式表如下: QLabel *label = new QLabel(this); label->setStyleSheet("background-color: rgb(250, 0, 0);font-size:60px;color:blue"); ...