setPalette(pe);• 第二种,使用样式表如下:setStyleSheet("QLabel{color:red;font:40pt;background-color:rg_qlabel设置字体颜">
赞
踩
**
**
• 第一种,使用setPalette()方法如下:
QLabel *label = new QLabel(tr("Hello Qt!"));
QPalette pe;
pe.setColor(QPalette::WindowText,Qt::white);
label->setPalette(pe);
• 第二种,使用样式表如下:
setStyleSheet("QLabel{color:red;font:40pt;background-color:rgb(0,0,0);}");
//setStyleSheet("color:#ff6600;");
• 第三种,使用QStyle,在Qt Demo中有一个很好的讲解QStyle的例子,可以参考学习。
• 第四种,使用一些简单的HTML格式:
QLabel *label = `new QLabel("<h2><i>Hello</i><font color=red>Qt!</font></h2>");`
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。