QT 修改样式大小(含代码&非代码)

时间:2024-04-12 12:47:50

设置样式报错 error: 'passwordLEb' was not declared in this scope

     if(userNameLEd->text().trimmed() == tr("admin") && passwordLEb->text() == tr("admin"))

由于版本的原因,原来的ui.label更改为ui->label

目录

代码操作_使用函数setPalette()

非代码_界面操作


代码操作_使用函数setPalette()

//设置字号

QFont ft;
ft.setPointSize(12);
ui->label->setFont(ft);

//设置颜色
QPalette pa;
pa.setColor(QPalette::WindowText,Qt::red);
label->setPalette(pa);

代码操作_使用样式表

QLabel *label = new QLabel(this);

ui->label->setStyleSheet("background-color: rgb(250, 0, 0);font-size:60px;color:blue");

ui->label->setText("Hello World");

 

非代码_界面操作

QT 修改样式大小(含代码&非代码)QT 修改样式大小(含代码&非代码)QT 修改样式大小(含代码&非代码)